-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
82 lines (70 loc) · 1.88 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
[project]
name = "gds-sim"
dynamic = ["version"]
description = "High-performance simulation engine for the GDS ecosystem"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
authors = [
{ name = "Rohan Mehta", email = "rohan@block.science" },
]
keywords = [
"generalized-dynamical-systems",
"simulation",
"cadcad",
"agent-based-modeling",
"gds-framework",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Typing :: Typed",
]
dependencies = ["pydantic>=2.10"]
[project.optional-dependencies]
pandas = ["pandas>=2.0"]
[project.urls]
Homepage = "https://github.com/BlockScience/gds-core"
Repository = "https://github.com/BlockScience/gds-core"
Documentation = "https://blockscience.github.io/gds-core"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "gds_sim/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["gds_sim"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--import-mode=importlib --cov=gds_sim --cov-report=term-missing --no-header -q"
[tool.coverage.run]
source = ["gds_sim"]
omit = ["gds_sim/__init__.py"]
[tool.coverage.report]
fail_under = 80
show_missing = true
exclude_lines = [
"if TYPE_CHECKING:",
"pragma: no cover",
]
[tool.mypy]
strict = true
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "SIM", "TCH", "RUF"]
[dependency-groups]
dev = [
"mypy>=1.13",
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.8",
]