-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 867 Bytes
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
[tool.poetry]
name = "project_name"
version = "1.0.dev1"
description = "Summarize your project purpose here"
authors = ["William Abreu <contato@williamabreu.net>"]
license = "MIT License"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
pydocstyle = "^6.1.1"
pre-commit = "^2.15.0"
black = "^21.9b0"
flake8 = "^4.0.1"
isort = "^5.9.3"
pyclean = "^2.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# See: https://mypy.readthedocs.io/en/stable/config_file.html
[tool.mypy]
exclude = "(\\..*|env|venv|__pycache__|build|dist)/$"
files = ["project_name"] # FIXME: Do set this to the correct 'project_name'.
python_version = "3.8"
strict_optional = false
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_ignores = true
show_error_codes = true
pretty = true