-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·56 lines (52 loc) · 1.69 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
VERSION = '0.5.19'
if __name__ == '__main__':
setup(
name='datastream',
version=VERSION,
description="Datastream API time-series library.",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='wlan slovenija',
author_email='open@wlan-si.net',
url='https://github.com/wlanslovenija/datastream',
license='AGPLv3',
packages=find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
package_data={},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
include_package_data=True,
zip_safe=False,
install_requires=[
'pytz>=2012h',
],
extras_require={
'mongodb': [
'mongoengine>=0.8.1',
'pymongo>=2.7.1,<3.0.0',
],
'influxdb': [
'python-dateutil>=2.4.2',
'psycopg2>=2.6.1',
'influxdb>=2.10.0',
'backports.lzma>=0.0.6',
'cachetools>=1.1.6',
],
},
tests_require=[
'mongoengine>=0.8.1',
'pymongo>=2.7.1,<3.0.0',
'python-dateutil>=2.4.2',
'psycopg2>=2.6.1',
'influxdb>=2.10.0',
'backports.lzma>=0.0.6',
'cachetools>=1.1.6',
],
test_suite='tests',
)