-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.12 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
48
49
50
51
52
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "python-project-template"
version = "0.1.0"
description = "Python Project Template using Conda and Poetry"
license = "Apache-2.0"
authors = ["Christoph Stumpf <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/cstub/python-project-template"
keywords= ["python", "project-template"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "ppt" },
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-cov = "^3.0.0"
invoke = "^1.6.0"
pre-commit = "^2.17.0"
[tool.black]
line-length = 120
exclude = "(.eggs|.git|.hg|.mypy_cache|.venv|_build|buck-out|build|dist)"
[tool.isort]
known_first_party = [
"ppt",
]
skip_glob = []
profile = "black"
line_length = 120
[tool.mypy]
python_version = 3.9
check_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
[tool.coverage.run]
source = ["ppt"]