-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.08 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
44
45
46
[project]
name = "epidemik"
version = "0.1.2"
authors = [
{ name="Bruno Gonçalves", email="bgoncalves@data4sci.com" },
]
description = "A package to simulate compartmental epidemic models"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib>=3.3",
"networkx>=3",
"numpy>=1.20",
"pandas>=2.0",
"scipy>=1.7",
"tqdm>=4",
"pyyaml (>=6.0.2,<7.0.0)",
]
[project.urls]
Homepage = "https://github.com/DataForScience/epidemik"
Issues = "https://github.com/DataForScience/epidemik/issues"
Documentation = "https://epidemik.readthedocs.io/"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core>=2.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning.from-file]
source = "src/epidemik/__init__.py"
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]