-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.62 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.62 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
import dooblr
if __name__ == "__main__":
with open('requirements.txt', 'r') as f:
install_requires = [x for x in list(f) if x[0] != '-']
with open('test-requirements.txt', 'r') as f:
test_requires = [x for x in list(f) if x[0:2] != '-r']
with open('README.rst', 'r') as infile:
long_description = infile.read()
setup(
name='dooblr',
description='Duplicate data received over MQTT to InfluxDB',
long_description=long_description,
author='Tyler Crumpton',
author_email='tyler.crumpton@gmail.com',
url='https://github.com/makerslocal/dooblr',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
license='ISC',
setup_requires=['tcversioner'],
install_requires=install_requires,
tests_require=test_requires,
tcversioner={
'version_module_paths': ['dooblr/_version.py'],
'use_dev_not_post': True
},
packages=['dooblr'],
entry_points={
'console_scripts': [
'dooblr = dooblr.main:main'
]
},
)