-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
80 lines (77 loc) · 3.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# setup.py
# file describes all of the metadata about your project.
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent
readme = (here / 'README.md').read_text()
setup(name='sensortoolkit',
version='1.1.0',
python_requires='>=3.8, <4',
description='Library for evaluating air sensor data',
long_description=readme,
long_description_content_type='text/markdown',
author='Samuel Frederick, ORAU Contractor for U.S. EPA ORD',
maintainer='Andrea Clements',
maintainer_email='[email protected]',
project_urls={'Source': 'https://github.com/USEPA/sensortoolkit',
'Documentation': 'https://sensortoolkit.readthedocs.io/en/latest/',
'Tracker': 'https://github.com/USEPA/sensortoolkit/issues',
'US EPA Air Sensor Toolbox': 'https://www.epa.gov/air-sensor-toolbox'},
license='The MIT License (MIT)',
license_files=('LICENSE.txt'),
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science"
],
packages=find_packages(include=['sensortoolkit',
'sensortoolkit.calculate',
'sensortoolkit.datetime_utils',
'sensortoolkit.deploy',
'sensortoolkit.evaluation_objs',
'sensortoolkit.lib_utils',
'sensortoolkit.model',
'sensortoolkit.param',
'sensortoolkit.plotting',
'sensortoolkit.qc',
'sensortoolkit.reference',
'sensortoolkit.ingest',
'sensortoolkit.testing_attrib_objs'
]),
package_data={'': ["evaluation_objs/templates/O3/Reporting_Template_Base_O3.pptx",
"evaluation_objs/templates/PM25/Reporting_Template_Base_PM25.pptx",
"evaluation_objs/templates/PM10/Reporting_Template_Base_PM10.pptx",
"evaluation_objs/templates/CO/Reporting_Template_Base_CO.pptx",
"evaluation_objs/templates/NO2/Reporting_Template_Base_NO2.pptx",
"evaluation_objs/templates/SO2/Reporting_Template_Base_SO2.pptx",
"evaluation_objs/templates/placeholder_image.png",
"reference/method_codes/methods_criteria.csv",
"reference/method_codes/methods_met.csv",
"param/units.csv",
"param/param_info.json"
]
},
install_requires=['matplotlib',
'numpy',
'pandas>=1.3.0, <=1.3.5',
'pathlib2',
'python-pptx',
'requests',
'scipy',
'seaborn<=0.11.2',
'tabulate',
'statsmodels==0.13.5',
'urllib3',
'pip',
'chardet',
'timezonefinder',
'appdirs',
'charset_normalizer<=2.0.3'
]
)