-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
34 lines (30 loc) · 940 Bytes
/
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
[project]
description = "Data scripts and tools for Ward Wise ChiHackNight project"
name = "ward-wise-data-analysis"
version = "0.0.1"
dependencies = [
"geopandas",
"numpy",
"pandas",
"pypdf2",
"requests",
"shapely"
]
[project.scripts]
extract_ward_spending_data_from_pdfs = "src.scripts.ward_spending_pdf_data_extraction:extract_from_files"
postprocess_and_combine_ward_spending_data = "src.scripts.ward_spending_post_processing:postprocess_and_combine_data"
generate_ward_spending_geocoding = "src.scripts.ward_spending_geocoding:generate_ward_spending_geocoding"
generate_bikeway_installations_geocoding = "src.scripts.bike_geocoding:generate_bikeway_installations_geocoding"
[build-system]
requires = [
"setuptools>=68.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"tests*",
]
[tool.pytest.ini_options]
markers = [
"integration_test: tests that actually hit external systems",
]