forked from cruft/cruft
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (55 loc) · 1.61 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
[tool.poetry]
name = "cruft"
version = "0.0.0"
description = "Allows you to maintain all the necessary cruft for packaging and building projects separate from the code you intentionally write. Built on-top of CookieCutter."
authors = ["Timothy Crosley <[email protected]>", "Sambhav Kothari <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7"
cookiecutter = ">=1.7"
gitpython = ">=3.0"
toml = { version = ">=0.10", optional = true, python = "<3.11" }
typer = ">=0.4.0"
click = ">= 7.1.2"
#examples = {version = ">=1.0.2", optional = true}
importlib-metadata = {version = ">=2.0.0,<5.0.0", python = "<3.8"}
[tool.poetry.extras]
pyproject = ["toml"]
examples = ["examples"]
[tool.poetry.dev-dependencies]
bandit = ">=1.6"
black = ">=22.12.0"
examples = { version = ">=1.0.2", python = ">=3.7.0,<4.0"}
safety = ">=1.8"
isort = ">=5.11.0"
flake8 = "<5.0.0,>=4.0.0"
flake8-bugbear = ">=19.8"
mypy = ">=0.971"
types-toml = ">=0.10"
ipython = ">=7.16.3"
mkdocs = ">=1.2"
pytest = ">=6.2.5"
pytest-cov = ">=3.0"
pytest-repeat = ">=0.9.1"
pytest-xdist = ">=2.5.0"
pytest-mock = ">=3.3.1"
pep8-naming = ">=0.8.2"
portray = { version = ">=1.7.0", python = ">=3.7.0,<4.0"}
vulture = ">=1.0"
[tool.poetry.scripts]
cruft = "cruft._cli:app"
[tool.portray.mkdocs.theme]
favicon = "art/logo.png"
logo = "art/logo.png"
name = "material"
palette = {primary = "orange", accent = "cyan"}
[tool.cruft]
skip = ["cruft/__init__.py", "tests"]
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.isort]
profile = "hug"