forked from gusutabopb/aioinflux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.43 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
#!/usr/bin/env python
from setuptools import setup
from pathlib import Path
with open('README.rst', 'r') as f:
long_description = f.read()
meta = {}
with open(Path(__file__).parent / 'aioinflux' / '__init__.py') as f:
exec('\n'.join(l for l in f if l.startswith('__')), meta)
setup(name='aioinflux',
version=meta['__version__'],
description='Asynchronous Python client for InfluxDB',
long_description=long_description,
author='Gustavo Bezerra',
author_email='[email protected]',
url='https://github.com/plugaai/aioinflux',
packages=['aioinflux'],
include_package_data=True,
python_requires='>=3.6',
install_requires=['aiohttp>=3.0', 'ciso8601'],
extras_require={
'test': [
'pytest',
'pytest-asyncio',
'pytest-cov',
'pyyaml',
'pytz',
'flake8',
],
'docs': [
'sphinx',
'sphinx_rtd_theme',
'sphinx-autodoc-typehints',
],
'pandas': [
'pandas>=0.21',
'numpy'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Database',
])