forked from farmOS/farmOS.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 946 Bytes
/
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
import setuptools
setup_requires = [
"pytest-runner",
]
install_requires = ["requests-oauthlib", "pydantic>=1.7.3"]
tests_require = ["pytest", "black>=20"]
with open("README.md") as fh:
readme = fh.read()
setuptools.setup(
name="farmOS",
version="1.0.0-beta.3",
author="farmOS team",
author_email="[email protected]",
description="A Python library for interacting with farmOS over API. ",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/farmOS/farmOS.py",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
test_suite="pytest",
)