forked from Macrometacorp/pyC8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
with open('./README.md') as fp:
description = fp.read()
setup(
name='pyC8',
version='0.17.1',
description='Python Driver for Macrometa Global Edge Fabric',
long_description=description,
long_description_content_type="text/markdown",
author='Macrometa',
author_email='info@macrometa.co',
url='https://www.macrometa.io',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=['requests==2.25.1', 'six', 'websocket-client==0.57.0'],
tests_require=['pytest', 'mock', 'flake8'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Documentation :: Sphinx'
]
)