-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (83 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
96 lines (83 loc) · 2.17 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
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[project]
name = "patchsim"
version = "0.1.0b1"
description = "A modular simulation framework for patch-based metapopulation epidemiology"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
authors = [
{ name = "Adish Assain", email = "adish@artpark.in" },
{ name = "Sneha S", email = "sneha@artpark.in" },
{ name = "Shreya Mukherjee", email = "shreyamukherjee@artpark.in" }
]
dependencies = [
"numpy",
"pandas",
"scipy",
"matplotlib",
"pyyaml",
"tqdm",
"networkx",
"SALib",
"rich>=14.3.3",
]
[project.urls]
Homepage = "https://github.com/dsih-artpark/patchsim"
Repository = "https://github.com/dsih-artpark/patchsim"
Documentation = "https://dsih-artpark.github.io/patchsim/"
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-cov",
"ruff",
"mypy",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.12",
"mkdocstrings[python]>=0.29.1",
"rich>=13.0.0",
"pre-commit>=3.0.0"
]
notebook = [
"jupyter",
"seaborn",
"plotly",
"ipywidgets"
]
[project.scripts]
patchsim = "patchsim.cli:main"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "RUF"]
fixable = ["ALL"]
[tool.ruff.lint.isort]
known-first-party = ["patchsim"]
[tool.ruff.lint.per-file-ignores]
"src/patchsim/models/ka_fmd_sirsv_discrete.py" = ["E501", "E741"]
[tool.hatch.build.targets.wheel]
packages = ["src/patchsim"]
include = [
{ path = "src/patchsim/templates", from = "." },
]
[tool.hatch.build.targets.sdist]
include = [
"/src/patchsim/**",
"/src/patchsim/templates/**",
"/README.md",
"/LICENSE",
]