forked from fablabbcn/smartcitizen-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
94 lines (81 loc) · 3.28 KB
/
setup.py
File metadata and controls
94 lines (81 loc) · 3.28 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import sys
if sys.version_info < (3,0):
sys.exit("scdata requires python 3.")
PROJECT_URLS = {
"Documentation": "https://docs.smartcitizen.me/Data%20Analysis/",
"Source Code": "https://github.com/fablabbcn/smartcitizen-data",
}
setup(
name='scdata',
version= '0.1.7',
description='Module for analysis of sensors and time series data',
author='oscgonfer',
license='GNU-GPL3.0',
packages=find_packages(),
keywords=['air', 'sensors', 'Smart Citizen'],
url='https://github.com/fablabbcn/smartcitizen-data',
project_urls=PROJECT_URLS,
long_description = ("""
scdata - Module for analysis of sensors and time series data.
scdata is a framework built with the purpose of *analysis*, *calibration*
and *post-processing* of sensors data, related to any field, but particularly
focused on air-quality data coming from low-cost sensors in the
`Smart Citizen Project <https://www.smartcitizen.me>`__ .
It aims to unify several sources of data and to provide tools for analysing data by:
* Interacting with several sensors APIs
* Clean data, export and calculate metrics
* Model sensor data and calibrate sensors
* Generate data visualisations
"""),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
install_requires=[ 'attrs~=20.3.0',
'branca==0.4.0',
'certifi==2020.4.5.1',
'chardet==3.0.4',
'cycler==0.10.0',
'Flask~=1.1.2',
'folium==0.11.0',
'geographiclib==1.50',
'geopy==1.21.0',
'idna==2.9',
'importlib-metadata==1.6.0',
'Jinja2==2.11.2',
'kiwisolver==1.2.0',
'MarkupSafe==1.1.1',
'matplotlib==3.2.1',
'numpy~=1.19.4',
'pandas~=1.0.3',
'pdfrw==0.4',
'PDPbox==0.2.0',
'plotly==4.6.0',
'pyparsing==2.4.7',
'python-dateutil==2.8.1',
'pytz==2020.1',
'PyYAML==5.3.1',
'requests==2.23.0',
'reportlab==3.5.*',
'scipy==1.4.1',
'scikit-learn==0.23.1',
'seaborn==0.10.1',
'Shapely==1.7.0',
'six==1.14.0',
'termcolor==1.1.0',
'tzwhere==3.0.3',
'urllib3==1.25.9',
'webencodings==0.5.1',
'zipp==3.1.0'],
setup_requires=['wheel'],
include_package_data=True,
zip_safe=False
)