-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 932 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "insert-license-header"
description = "Tool to insert license headers at the beginning of text-based files."
readme = "README.md"
version = "1.3.0"
license = "MIT"
authors = [
{name = "Thomas Marwitz", email = "[email protected]"},
{name = "Lucas Cimon", email = "[email protected]"},
]
dependencies = [
"rapidfuzz"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
[project.urls]
repository = "https://github.com/thomasmarwitz/insert-license-header"
[tool.hatch.build.targets.sdist]
include = [
"/insert_license_header",
]
[project.scripts]
insert-license = "insert_license_header.insert_license:main"