-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (42 loc) · 1.38 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
import setuptools
def get_version():
version = {}
with open("dayforce_client/version.py") as fp:
exec(fp.read(), version)
return version["__version__"]
with open("README.md", "r") as f:
readme = f.read()
setuptools.setup(
name="dayforce_client",
author="David Wallace",
author_email="[email protected]",
version=get_version(),
url="https://github.com/goodeggs/dayforce_client",
description="A python client for typed interactions with the Dayforce API.",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Topic :: Software Development",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="dayforce python",
license="MIT",
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=[
"requests",
"attrs",
"pysftp",
"paramiko",
"cryptography",
],
python_requires=">=3.6",
)