forked from techtonik/python-patch
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 850 Bytes
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
[project]
name = "patch-ng"
version = "1.19.0"
requires-python = ">=3.8"
description = "Library to parse and apply unified diffs."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Conan.io", email = "info@conan.io" }
]
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8'
]
keywords = ['patch', 'parse', 'diff', 'strip', 'diffstat']
[project.urls]
Repository = "https://github.com/conan-io/python-patch-ng/"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
patch_ng = ["LICENSE", "README.md"]