-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (113 loc) · 2.95 KB
/
Copy pathpyproject.toml
File metadata and controls
122 lines (113 loc) · 2.95 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[project]
name = "gds-examples"
version = "0.1.2"
description = "Tutorial examples for gds-framework — six complete domain models demonstrating every framework feature"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
authors = [
{ name = "Rohan Mehta", email = "rohan@dynamicalsystemsgroup.com" },
]
keywords = [
"generalized-dynamical-systems",
"examples",
"tutorial",
"gds-framework",
"system-specification",
"compositional-systems",
]
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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"gds-framework>=0.3.0",
"gds-viz>=0.1.0",
"gds-domains[games,symbolic]>=0.1.0",
"gds-continuous>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/DynamicalSystemsGroup/gds-core"
Repository = "https://github.com/DynamicalSystemsGroup/gds-core"
Documentation = "https://dynamicalsystemsgroup.github.io/gds-core"
[tool.uv.sources]
gds-framework = { workspace = true }
gds-viz = { workspace = true }
gds-domains = { workspace = true }
gds-continuous = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
only-include = [
"__init__.py",
"visualize_examples.py",
"crosswalk",
"crosswalk_dsl",
"insurance",
"insurance_dsl",
"lotka_volterra",
"lotka_volterra_dsl",
"prisoners_dilemma",
"prisoners_dilemma_dsl",
"prisoners_dilemma_nash",
"evolution_of_trust",
"sir_epidemic",
"sir_epidemic_dsl",
"thermostat",
"thermostat_dsl",
"double_integrator",
"software",
"gds_examples",
]
[tool.pytest.ini_options]
testpaths = ["."]
addopts = "--import-mode=importlib"
[tool.mypy]
explicit_package_bases = true
namespace_packages = true
files = [
"crosswalk",
"crosswalk_dsl",
"insurance",
"insurance_dsl",
"lotka_volterra",
"lotka_volterra_dsl",
"prisoners_dilemma",
"prisoners_dilemma_dsl",
"prisoners_dilemma_nash",
"evolution_of_trust",
"sir_epidemic",
"sir_epidemic_dsl",
"thermostat",
"thermostat_dsl",
"double_integrator",
"gds_examples",
"software",
"visualize_examples.py",
]
[[tool.mypy.overrides]]
module = ["gds_viz.*", "gds_domains.*", "pytest"]
ignore_missing_imports = true
[project.optional-dependencies]
notebooks = ["marimo>=0.20.0"]
nash = ["nashpy>=0.0.41"]
evolution = ["plotly>=5.0"]
[dependency-groups]
dev = [
"marimo>=0.20.0",
"mypy>=1.19.1",
"pyright>=1.1.408",
"pytest>=9.0.2",
"ruff>=0.8",
"nashpy>=0.0.41",
"plotly>=5.0",
]