-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 871 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
[tool.poetry]
name = "muos"
version = "0.0.0"
description = ""
authors = ["sakkke <[email protected]>"]
readme = "README.rst"
packages = [{include = "muos", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
pyfzf = "0.3.1"
StrEnum = "0.4.8"
Sphinx = {version = "^5.1.1", optional = true}
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
pytest = {version = "^7.1.3", optional = true}
pytest-codecov = {version = "^0.5.0", optional = true}
pytest-cov = {version = "^3.0.0", optional = true}
GitPython = {version = "^3.1.27", optional = true}
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
style = 'pep440'
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme"]
test = ["GitPython", "pytest", "pytest-codecov", "pytest-cov"]