-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
88 lines (78 loc) · 2.36 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
[project]
name = "gds-core"
version = "0.1.0"
description = "GDS ecosystem monorepo — typed compositional specifications for complex systems"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
authors = [
{ name = "Rohan Mehta", email = "rohan@block.science" },
]
keywords = [
"generalized-dynamical-systems",
"compositional-systems",
"gds-framework",
"system-specification",
]
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",
]
dependencies = [
"gds-framework>=0.2.3",
"gds-viz>=0.1.0",
"gds-games>=0.1.0",
"gds-stockflow>=0.1.0",
"gds-control>=0.1.0",
"gds-software>=0.1.0",
"gds-business>=0.1.0",
"gds-examples>=0.1.0",
"gds-sim>=0.1.0",
"gds-psuu>=0.1.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.build.targets.wheel]
packages = ["gds_core"]
[tool.uv.sources]
gds-framework = { workspace = true }
gds-viz = { workspace = true }
gds-games = { workspace = true }
gds-stockflow = { workspace = true }
gds-control = { workspace = true }
gds-software = { workspace = true }
gds-business = { workspace = true }
gds-examples = { workspace = true }
gds-sim = { workspace = true }
gds-psuu = { workspace = true }
[tool.uv.workspace]
members = ["packages/*"]
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "SIM", "TCH", "RUF"]
[tool.ruff.lint.per-file-ignores]
# Mermaid diagram strings are inherently long and cannot be wrapped
"packages/gds-examples/prisoners_dilemma/visualize.py" = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["gds", "gds_viz", "ogs", "stockflow", "gds_control", "gds_software", "gds_business", "gds_sim", "gds_psuu"]
[dependency-groups]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.27",
"mkdocs-llmstxt>=0.5",
"mkdocs-marimo>=0.2",
]