-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.93 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
"""
Remote API
Talent is everywhere. Opportunity is not. Remote's mission is to create opportunity everywhere, empowering employers to find and hire the best talent, and enabling individuals to build financial and personal freedom. Remote is a Global HR Platform that helps companies hire, manage, and pay their entire team — and more effectively compete in the modern global economy through our comprehensive set of core solutions including, HRIS, payroll, international employment, contractor management, and more. Whether you're just starting your global journey, or looking to optimize your existing operations, sign up or book a demo - and see how Remote makes global HR simple.
The version of the OpenAPI document: 0.1.0
Generated by: https://konfigthis.com
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "remote-python-sdk"
VERSION = "0.1.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
# read the contents of README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
REQUIRES = [
"certifi >= 2023.7.22",
"python-dateutil ~= 2.8.2",
"typing_extensions ~= 4.3.0",
"urllib3 ~= 1.26.18",
"cryptography ~= 42.0.5",
"frozendict ~= 2.3.4",
"aiohttp ~= 3.9.2",
"pydantic ~= 2.4.2"
]
setup(
name=NAME,
version=VERSION,
description="Remote API",
author="Konfig",
author_email="engineering@konfigthis.com",
url="https://github.com/konfig-sdks/remote-python-sdk/tree/main/python",
keywords=["Konfig", "Remote API"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown'
)