-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (30 loc) · 849 Bytes
/
setup.py
File metadata and controls
30 lines (30 loc) · 849 Bytes
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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cyberfly-client-sdk',
version='0.2',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests',
'pypact-lang',
'rule_engine',
'python-socketio[client]',
'sensor-library-python>=0.2.0'
],
extras_require={
'sensors': [
'sensor-library-python>=0.2.0'
]
},
entry_points={
'console_scripts': [
'cyberfly-device=cyberflySdk.device_manager:main',
],
},
url='https://github.com/cyberfly-io/cyberfly-python-client-sdk',
long_description=long_description,
long_description_content_type='text/markdown'
)