forked from wildfoundry/dataplicity-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (35 loc) · 912 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
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
]
# http://bit.ly/2alyerp
with open('dataplicity/_version.py') as f:
exec(f.read())
with open('README.md') as f:
long_desc = f.read()
setup(
name='dataplicity',
version=__version__,
description="Platform for connected devices",
long_description=long_desc,
author='WildFoundry',
author_email='[email protected]',
url='https://www.dataplicity.com',
platforms=['any'],
packages=find_packages(),
classifiers=classifiers,
entry_points={
"console_scripts": [
'dataplicity = dataplicity.app:main'
]
},
install_requires=[
'enum34==1.1.6',
'six==1.10.0',
'ws4py==0.3.5',
],
zip_safe=True
)