forked from FarmBot/farmbot-mqtt-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 821 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
from setuptools import setup
with open("README.md") as fh:
long_description = fh.read()
with open("VERSION") as vers_fh:
version = vers_fh.read()
setup(
name="farmbot",
version=version,
description="Official FarmBot RPC wrapper library for Python.",
py_modules=["farmbot"],
package_dir={
"": "farmbot"
},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"paho-mqtt >= 1.5",
],
extras_require={
"dev": [
"pytest>=6.2"
]
},
url="https://github.com/farmbot-labs/farmbot-py",
author="FarmBot, Inc.",
author_email="[email protected]"
)