21 lines
581 B
TOML
21 lines
581 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools>=61.0"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
[project]
|
||
|
name = "pyskyline"
|
||
|
version = "0.1"
|
||
|
authors = [
|
||
|
{ name="Alexandre FOUCHER", email="alexandre.foucher@univ-ubs.fr" },
|
||
|
]
|
||
|
description = "A small example package"
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.8"
|
||
|
classifiers = [
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
]
|
||
|
|
||
|
# [project.urls]
|
||
|
# Homepage = "https://github.com/pypa/sampleproject"
|
||
|
# Issues = "https://github.com/pypa/sampleproject/issues"
|