-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.22 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
[tool.poetry]
name = "orcha"
version = "1.0.0-a2"
description = "System handler and orchestrator of multiple environments"
authors = ["Javier Alonso <dev@javinator9889.com>"]
[tool.poetry.dependencies]
python = "^3.7.2"
Sphinx = {version = "^4.3.2", optional = true, extras = ["docs"]}
sphinx-rtd-theme = {version = "^1.0.0", optional = true, extras = ["docs"]}
sphinx-autodoc-annotation = {version = "^1.0-1", optional = true, extras = ["docs"]}
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-autodoc-annotation"]
[tool.poetry.dev-dependencies]
black = "^21.11b1"
flake8 = "^4.0.1"
pylint = "^2.12.1"
flake8-pylint = "^0.1.3"
isort = "^5.10.1"
pre-commit = "^2.16.0"
importlib-metadata = "<5.0"
typing-extensions = "^4.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
target-version = ['py37']
skip-string-normalization = false
# We need to force-exclude the negated include pattern
# so that pre-commit run --all-files does the correct thing
# see https://github.com/psf/black/issues/1778
force-exclude = 'docs/source/conf.py'
include = 'orcha\/.*\.py$'
exclude = 'docs/source/conf.py'
[tool.isort]
profile = "black"
multi_line_output = 3