-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 908 Bytes
/
setup.py
File metadata and controls
39 lines (37 loc) · 908 Bytes
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
#!/usr/bin/env python3
"""
Setup script for the USDA FDC Python Client.
"""
from setuptools import setup, find_packages
setup(
name="usda_fdc",
version="0.1.9",
packages=find_packages(),
include_package_data=True,
install_requires=[
"requests>=2.25.0",
"pint>=0.17",
"python-dotenv>=0.19.0"
],
extras_require={
"django": ["Django>=3.2"],
"dev": [
"pytest>=6.0.0",
"pytest-cov>=2.12.0",
"black>=21.5b2",
"isort>=5.9.1",
"mypy>=0.812",
"flake8>=3.9.2",
],
"docs": ["sphinx>=4.0.2", "sphinx-rtd-theme>=0.5.2"],
},
entry_points={
"console_scripts": [
"fdc=usda_fdc.cli:main",
"fdc-nat=usda_fdc.analysis.cli:main",
],
},
package_data={
"usda_fdc": ["analysis/resources/dri/*.json"],
},
)