-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 841 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 841 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
dynamic_requires = []
setup(
name='avion',
version='0.10',
author='Matthew Garrett',
author_email='mjg59@srcf.ucam.org',
url='http://github.com/mjg59/python-avion',
packages=find_packages(),
scripts=[],
description='Python API for controlling Avi-on Bluetooth dimmers',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'bluepy>=1.1.4',
'csrmesh>=0.9.0',
'requests>=2.18.4',
],
include_package_data=True,
zip_safe=False,
)