-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (30 loc) · 971 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requires = ['pysimplesoap']
packages = ['raumfeld']
with open('README.rst') as f:
readme = f.read()
setup(
name='raumfeld',
version='0.2',
description='A pythonic library for discovering and controlling Teufel '
'Raumfeld devices.',
license='MIT',
author='Thomas Feldmann',
author_email='[email protected]',
url='https://github.com/tfeldmann/python-raumfeld',
long_description=readme,
packages=packages,
install_requires=requires,
keywords=['raumfeld', 'upnp', 'soap'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)