-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 820 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
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "patchparser"
version = "0.0.3"
authors = [
]
description = "A python package to extract features from a commit patch."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
]
dependencies = [
'requests',
'GitPython'
]
[project.urls]
"Homepage" = "https://github.com/tdunlap607/patchparser"
"Bug Tracker" = "https://github.com/tdunlap607/patchparser/issues"