-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.09 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
[virtualenvs]
create = true
in-project = true
prefer-active-python = true
[tool.poetry]
name = "unbeheader"
version = "1.5.0-dev"
description = "Never fail to maintain your file headers"
repository = "https://github.com/unconventionaldotdev/unbeheader"
readme = "README.md"
license = "MIT"
authors = [
"Adrian Moennich <[email protected]>",
"Alejandro Avilés <[email protected]>"
]
maintainers = [
"Alejandro Avilés <[email protected]>",
"Adrian Moennich <[email protected]>"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
[tool.poetry.scripts]
unbehead = "unbeheader.cli:main"
[tool.poetry.dependencies]
python = ">=3.9.0"
colorclass = ">=2.2.2"
pyyaml = ">=6"
click = ">=8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
pytest = "^7.4.0"
ruff = "^0.0.280"
tox = "^4.11.3"
types-pyyaml = "^6.0.12.11"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"