-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.1 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
32
33
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
VERSION = "0.4"
setup(
name='tellcore-net',
version=VERSION,
license='BSD License',
author='Pascal Vizeli',
author_email='[email protected]',
url='https://github.com/pvizeli/tellcore-net',
download_url='https://github.com/pvizeli/tellcore-net/tarball/'+VERSION,
description=('a Python module that allow to run tellcore over TCP/IP'),
long_description=long_description,
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['telldus', 'tellcore', 'interface', 'wrapper', 'socat'],
zip_safe=False,
platforms='any',
py_modules=['tellcorenet'],
)