-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
35 lines (33 loc) · 1.26 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
[project]
name = "whatthepatch"
version = "1.0.7"
maintainers = [{ name = "Christopher S. Corley", email = "cscorley@gmail.com" }]
requires-python = ">=3.9"
readme = "README.rst"
description = "A patch parsing and application library."
keywords = ["patch", "diff", "parser"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development",
"Topic :: Text Processing",
]
[project.urls]
"Homepage" = "https://github.com/cscorley/whatthepatch"
"Bug Tracker" = "https://github.com/cscorley/whatthepatch/issues"
[build-system]
requires = ["setuptools>=65.0.0"]
build-backend = "setuptools.build_meta"