-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.03 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
47
[tool.poetry]
name = "pyproject-toml-api"
version = "0.1.1"
description = ""
authors = ["Zack Hankin <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "pyproject_toml_api"}]
[tool.poetry.dependencies]
python = "^3.9"
semantic-version = "^2.10.0"
# Extras for docs
sphinx = { version = "^5.3", optional = true }
myst-parser = { version = "^0.18", optional = true }
sphinx-rtd-theme = { version = "^1.2.0", optional = true }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-sugar = "^0.9.6"
mypy = "^1.0.1"
coverage = "^7.2.1"
tox = "^4.4.6"
[tool.poetry.extras]
docs = ['sphinx', 'myst-parser', 'sphinx-rtd-theme']
#[tool.poetry.scripts]
#square = "template_package:main"
[tool.mypy]
mypy_path = '$MYPY_CONFIG_FILE_DIR'
files = '$MYPY_CONFIG_FILE_DIR/pyproject_toml_api'
explicit_package_bases = false
ignore_missing_imports = true
exclude = [
"docs/",
".venv/",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"