-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (30 loc) · 911 Bytes
/
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
[tool.poetry]
name = "py-des-lib"
version = "0.1.5"
description = "Event discrete, process based simulation for Python."
authors = ["vitostamatti <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "pydes", from = "src" }]
[tool.urls]
Homepage = "https://pydes.readthedocs.io/"
Documentation = "https://pydes.readthedocs.io/"
"Source code" = "https://github.com/vitostamatti/pydes"
[tool.setuptools]
license-files = ["LICENSE.txt"]
[tool.poetry.dependencies]
python = "^3.10"
greenlet = "^3.0.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
mkdocs-gen-files = "*"
mkdocs-literate-nav = "*"
mkdocs-section-index = "*"
mkdocstrings = { extras = ["python"], version = "*" }
# mkdocstrings[python] = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"