-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
26 lines (23 loc) · 818 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
#!/usr/bin/env python
from distutils.core import setup
long_desc = open('README.rst').read()
setup(name='radiotherm',
version='2.1.0',
description='client library for wifi thermostats sold by radiothermostat.com',
long_description=long_desc,
packages=('radiotherm',),
license='BSD',
author='Michael Hrivnak',
author_email='[email protected]',
url='https://github.com/mhrivnak/radiotherm',
classifiers=(
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries',
)
)