-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (54 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding: utf-8
# https://click.palletsprojects.com/en/7.x/setuptools/#setuptools-integration
"""
speleo-collector is a tool to collect weather and cavelink data.
Data is then prepared and stored to an influxDB instance.
"""
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('speleOWDL/speleowdl.py').read(),
re.M
).group(1)
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='speleo-OWDL',
version=version,
author='Sébastien Pittet',
author_email='sebastien@pittet.org',
description='Fetch Cavelink and Weather data and store it to influxDB.',
long_description=long_description,
url='https://github.com/SebastienPittet/speleo-OWDL',
keywords='speleo cavelink netatmo weather',
packages=find_packages(),
license='MIT',
platforms='any',
include_package_data=True,
install_requires=[
'cavelink',
'pyatmo',
'Click',
'colorama',
'influxdb-client',
],
entry_points={
'console_scripts':['speleowdl = speleOWDL.speleowdl:main']
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience'
]
)