-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 921 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
from distutils.core import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='upnpy',
version='0.9',
description='A fully featured UPnP python stack',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python :: 2.7',
'Topic :: Home Automation',
],
keywords='UPnP',
url='https://github.com/sfr-network-service-platforms/upnpy',
author='Antoine Monnet',
author_email='[email protected]',
license='LGPL',
packages=['upnpy'],
# extras_requires={
# 'openssl':['OpenSSL'],
# 'm2crypto':['M2Crypto'],
# 'console_browser':['urwid', 'bpython'],
# },
#include_package_data=True,
#zip_safe=False,
)