forked from thecynic/pylutron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 768 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
from setuptools import setup, find_packages
setup(
name = 'pylutron',
version = 'TEMPLATE_VERSION',
license = 'MIT',
description = 'Python library for Lutron RadioRA 2',
author = 'Dima Zavin',
author_email = '[email protected]',
url = 'http://github.com/thecynic/pylutron',
packages=find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[],
zip_safe=True,
)