forked from FollowTheProcess/pytoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
125 lines (112 loc) · 3.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytoil"
version = "0.28.0"
description = "CLI to automate the development workflow."
authors = ["Tom Fleet <[email protected]>"]
maintainers = ["Tom Fleet <[email protected]>"]
license = "Apache Software License 2.0"
homepage = "https://github.com/FollowTheProcess/pytoil"
readme = "README.md"
repository = "https://github.com/FollowTheProcess/pytoil"
documentation = "https://FollowTheProcess.github.io/pytoil/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
include = ["pytoil/py.typed"]
keywords = ["cli", "python", "developer-tools", "automation"]
[tool.poetry.scripts]
pytoil = "pytoil.cli.root:main"
[tool.poetry.urls]
Documentation = "https://FollowTheProcess.github.io/pytoil/"
[tool.poetry.dependencies]
python = "^3.9"
asyncclick = "8.0.3.2"
anyio = "3.5.0"
httpx = { extras = ["http2"], version = "0.21.3" }
aiofiles = "0.8.0"
PyYAML = "6.0"
rich = "12.2.0"
tomlkit = "0.10.1"
thefuzz = { extras = ["speedup"], version = "0.19.0" }
cookiecutter = "1.7.3"
virtualenv = "20.14.0"
pydantic = "1.9.0"
humanize = "4.0.0"
questionary = "1.10.0"
httpx-cache = "0.4.1"
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
bump2version = "1.0.1"
flake8 = "4.0.1"
flake8-bugbear = "22.3.23"
flake8-comprehensions = "3.8.0"
isort = "5.10.1"
nox = "2022.1.7"
black = "22.3.0"
pytest-cov = "3.0.0"
coverage = { extras = ["toml"], version = "6.3.2" }
mypy = "0.942"
mkdocs = "1.3.0"
mkdocs-material = "8.2.7"
types-click = "7.1.8"
pytest-asyncio = "0.18.3"
pytest-httpx = "0.18.0"
types-aiofiles = "0.8.5"
types-PyYAML = "6.0.5"
pytest-mock = "3.7.0"
pre-commit = "2.18.1"
freezegun = "1.2.1"
pytest-clarity = "1.0.1"
pip-audit = "2.1.1"
[tool.isort]
# Added for compatibility with black
profile = "black"
[tool.coverage.run]
omit = [
"*__init__.py",
"*__main__.py",
"pytoil/cli/*",
"*exceptions.py",
"pytoil/environments/base.py",
"pytoil/starters/base.py",
]
branch = true
[tool.coverage.report]
exclude_lines = ["# pragma: no cover", "def __repr__"]
[tool.mypy]
files = ["pytoil/**/*.py", "noxfile.py"]
ignore_missing_imports = true
strict = true
pretty = true
disallow_untyped_decorators = false
plugins = "pydantic.mypy"
[[tool.mypy.overrides]]
module = "tests.*"
ignore_errors = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.pycln]
path = "/pytoil"
expand_stars = true
all = true
no_gitignore = false
[tool.bandit]
skips = ["B105", "B106"]