forked from TD22057/insteon-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.1 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import setuptools
readme = open('README.md').read()
requirements = open("requirements.txt").readlines()
test_requirements = open("requirements-test.txt").readlines()
setuptools.setup(
name = 'insteon-mqtt',
version = '1.1.1',
description = "Insteon <-> MQTT bridge server",
long_description = readme,
author = "Ted Drain",
author_email = '',
url = 'https://github.com/TD22057/insteon-mqtt',
packages = setuptools.find_packages(exclude=["tests*"]),
scripts = ['scripts/insteon-mqtt'],
package_data = {
# include the schema files and config-base.yaml
"": ["data/*.yaml"],
},
install_requires = requirements,
license = "GNU General Public License v3",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
test_suite = 'tests',
tests_require = test_requirements,
# avoid eggs
zip_safe = False,
)