-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.28 KB
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
[project]
name = "unbeheader"
version = "1.6.0-dev"
description = "Never fail to maintain your file headers"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Adrian Moennich", email = "adrian.moennich@cern.ch" },
{ name = "Alejandro Avilés", email = "ome@unconventional.dev" }
]
maintainers = [
{ name = "Alejandro Avilés", email = "ome@unconventional.dev" },
{ name = "Adrian Moennich", email = "adrian.moennich@cern.ch" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = [
"colorclass>=2.2.2",
"pyyaml>=6",
"click>=8",
]
[dependency-groups]
dev = [
"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",
]
[project.scripts]
unbehead = "unbeheader.cli:main"
[project.urls]
Repository = "https://github.com/unconventionaldotdev/unbeheader"
[tool.hatch.build.targets.wheel]
packages = ["src/unbeheader"]
[tool.hatch.build.targets.sdist]
include = [
"src/unbeheader",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"