forked from mjg59/python-avion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 890 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 890 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
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
import sys
import warnings
dynamic_requires = []
version = 0.8
setup(
name='avion',
version=0.8,
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,
)