-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 920 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
#!/usr/bin/env python
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
]
# http://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package
with open('m2mclient/_version.py') as f:
exec(f.read())
long_desc = "Official Dataplicity M2M Client"
setup(
name='m2mclient',
version=VERSION,
description="A client for the Dataplicity M2M server",
long_description=long_desc,
author='WildFoundry',
author_email='[email protected]',
url='https://www.dataplicity.com',
platforms=['any'],
packages=find_packages(),
include_package_data=True,
exclude_package_data={'': ['_*', 'docs/*']},
classifiers=classifiers,
install_requires=[
'lomond==0.1.14',
'wsaccel==0.6.2'
]
)