-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·77 lines (69 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
authors = ["William C. Canin <william.costa.canin@gmail.com>"]
description = "Snakypy Helpers is a package that contains code ready to assist in the development of packages/applications so as not to replicate the code."
homepage = "https://github.com/snakypy/snakypy-helpers"
include = ["LICENSE"]
keywords = ["snakypy", "helpers", "linux"]
license = "MIT license"
name = "snakypy-helpers"
readme = "README.rst"
repository = "https://github.com/snakypy/snakypy-helpers"
version = "0.3.1"
packages = [
{include = "snakypy"},
]
[tool.poetry.dependencies]
pyfiglet = "0.8.post1"
python = "^3.9"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
flake8 = "^3.9.2"
imake = "^0.3.0"
ipython = "^7.24.0"
isort = "^5.8.0"
mypy = "^0.812"
pytest = "^6.2.4"
pytest-runner = "^5.3.1"
recommonmark = "^0.7.1"
sphinx = "^4.0.1"
sphinx-rtd-theme = "^0.5.2"
tomlkit = "^0.7.0"
tox = "^3.23.1"
twine = "^3.4.1"
wheel = "^0.34.2"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \venv
| build
| venv
| dist
| docs
| tmp
)/
)
'''
include = '\.pyi?$'
line-length = 88
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
profile = "black"
src_paths = ["snakypy", "tests"]
use_parentheses = true
[tool.pytest.ini_options]
cache_dir = "/tmp/.pytest_cache"
minversion = "6.0"
# addopts = "-ra -q"
testpaths = ["tests"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]