-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 999 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
[project]
requires-python = ">=3.8"
name = "fix_license_header"
version = "0.4.1"
description = "Fix license headers."
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Joshua A. Anderson", email = "[email protected]"},
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"License :: OSI Approved :: BSD License",
]
[project.scripts]
fix-license-header = "fix_license_header.fix_license_header:main"
[project.urls]
Homepage = "https://github.com/glotzerlab/fix-license-header"
Source = "https://github.com/glotzerlab/fix-license-header"
Issues = "https://github.com/glotzerlab/fix-license-header/issues"
[tool.setuptools]
packages = ["fix_license_header"]
[build-system]
requires = ["setuptools>=64.0.0",
"wheel",
]
build-backend = "setuptools.build_meta"