-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (80 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (80 loc) · 2.09 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "likeness_vitals"
dynamic = ["version"]
authors = [
{name = "James D. Gaboardi", email = "gaboardijd@ornl.gov"},
{name = "Jospeh V. Tuccillo", email = "tuccillojv@ornl.gov"},
]
maintainers = [
{name = "James D. Gaboardi"},
{name = "Jospeh V. Tuccillo"},
]
#license = {text = ""}
description = "Shared utility functionality for Likeness modules."
keywords = ["population-synthesis-utilities"]
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.11"
dependencies = [
"certifi>=2025.10.5", # see gh#35,#37
"geopandas>=1.1",
"numpy>=1.26",
"pandas>=2.2",
"scipy>=1.12",
"shapely>=2.0",
"tqdm>=4.63",
"matplotlib>=3.7.1",
]
[project.urls]
Home = "https://github.com/likeness-pop"
Repository = "https://github.com/likeness-pop/likeness-vitals"
[project.optional-dependencies]
tests = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-xdist",
"ruff",
"setuptools_scm",
]
notebooks = [
"matplotlib",
"watermark",
]
all = ["likeness_vitals[tests,notebooks]"]
[tool.setuptools.packages.find]
include = [
"likeness_vitals",
"likeness_vitals.*",
]
[tool.coverage.run]
omit = ["likeness_vitals/tests/*"]
source = ["likeness_vitals"]
[tool.coverage.report]
exclude_lines = ["except ImportError"]
ignore_errors = true
omit = ["likeness_vitals/tests/*"]
[tool.ruff]
line-length = 88
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "N", "B", "A", "C4", "SIM", "ARG"]
[tool.ruff.lint.per-file-ignores]
"*__init__.py" = ["F401"] # unused-import
"*.ipynb" = [
"F401",
"C408", # Unnecessary `dict` call (rewrite as a literal)
]