-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.05 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.05 KB
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
#!/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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['telnetlib3'],
package_data={'pylutron': ['py.typed']},
zip_safe=False,
)