-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
25 lines (24 loc) · 837 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
#!/usr/bin/env python
import setuptools
long_desc = open('README.rst').read()
setuptools.setup(
name="warmup4ie",
version='0.1.3',
description='client library for 4IE thermostat sold by warmup',
long_description=long_desc,
license='Apache',
author='Alexander Hinz',
author_email='[email protected]',
url='https://github.com/alex-0103/warmup4IE',
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License ',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries',
],
)