-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 1.55 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nmtc-mapper"
version = "0.4.1"
description = "Automated NMTC eligibility checker — geocode addresses and check Low-Income Community status using CDFI Fund and Census data"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "Jay Patel", email = "thejaypatel1511@gmail.com"}]
dependencies = [
"aiohttp>=3.8.0",
"tqdm>=4.64.0",
"pandas>=1.4.0",
"numpy>=1.21.0",
"requests>=2.27.0",
"openpyxl>=3.1.0",
"pyxlsb>=1.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/Jaypatel1511/nmtc-mapper"
# Explicit discovery: the repo root also contains a generated `site/` (mkdocs
# output) and `docs/`, `examples/` dirs. With the setup.py pin removed, build-time
# auto-discovery would error on multiple top-level candidates — pin it to the
# real package. (find_packages() in the old setup.py did this implicitly.)
[tool.setuptools.packages.find]
include = ["nmtcmapper*"]
# Register the `live` marker so `@pytest.mark.live` is not an unknown-marker
# warning, and so tests that hit the real Census/CDFI network can be deselected
# in CI with `-m "not live"` (see .github/workflows). Deselection is NOT a skip
# marker — the offline suite runs unconditionally; live tests are opt-in only.
[tool.pytest.ini_options]
markers = [
"live: exercises the real Census geocoder / CDFI Fund endpoints (network); deselected in CI, run locally with `-m live`",
]