-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "treat-sim"
dynamic = ["version"]
description = "A Python Free and Open Source Software implementation of the Treatment Centre Model from Nelson (2013)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8.19"
authors = [
{ name = "Thomas Monks", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"matplotlib>=3.3.4",
"numpy>=1.19.2",
"pandas>=1.2.3",
"scipy>=1.6.1",
"simpy>=4.0.1"
]
[project.urls]
Homepage = "https://github.com/pythonhealthdatascience/stars-treat-sim"
"Bug Tracker" = "https://github.com/pythonhealthdatascience/stars-treat-sim"
Documentation = "https://pythonhealthdatascience.github.io/stars-simpy-example-docs/"
[tool.hatch.version]
path = "treat_sim/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/treat_sim",
]