-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
"marshmallow>=3.11.1",
"marshmallow-jsonschema>=0.11.1",
"jsonschema>=3.2.0"
]
extras_require = {
"dev": ["pytest>=3.6", "flake8"]
}
setup(
name="nwss",
version="1.0.1",
author="DataMade",
author_email="[email protected]",
license="MIT",
description="A marshmallow schema for the \
National Wastewater Surveillance System",
url="https://github.com/datamade/nwss-data-standard",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
platforms=["any"],
keywords=[
"National Wastewater Surveillance System",
"NWSS",
"DCIPHER",
"United States Center for Disease Control",
"COVID-19",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)