-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 819 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]
requires = ["setuptools>=56", "wheel>=0.38.4"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonversioningexperiments"
version = "v1!4.0.0"
authors = [
{ name = "Gabriel Giurgica"},
]
description = "A package used to test the versioning and ordering of Python packages."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
dependencies = []
[tool.setuptools.packages.find]
where = ["pythonversioningexperiments"]
[project.urls]
Source = "https://github.com/GabrielGiurgica/python-versioning-experiments"
Issues = "https://github.com/GabrielGiurgica/python-versioning-experiments/issues"