-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ECHO_modules"
version = "0.1.5"
authors = [
{name = "Steve Hansen", email = "[email protected]"},
{name="Eric Nost", email="[email protected]" },
{name="Kelsey Breseman", email="[email protected]" },
{name = "EDGI", email = "[email protected]"}
]
readme = "README.md"
description = "Python package for analyzing the US Environmental Protection Agency's Enforcement and Compliance History Online database"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"folium>=0.14.0",
"geopandas>=0.9.0",
"ipython>=7.29.0",
"ipywidgets>=7.6.5",
"matplotlib>=3.4.3",
"numpy==1.23.5",
"pandas>=1.3.4",
"requests>=2.31.0",
"seaborn>=0.11.2"
]
[project.urls]
Home = "https://github.com/edgi-govdata-archiving/ECHO_modules/"
Issues = "https://github.com/edgi-govdata-archiving/ECHO_modules/issues"