-
Notifications
You must be signed in to change notification settings - Fork 411
/
Copy pathpyproject.toml
28 lines (25 loc) · 926 Bytes
/
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
[build-system]
# pyproject.toml support added in 61.0.0, but for some reason fails to process
# this file until version 62.
requires = ["setuptools >= 62"]
build-backend = "setuptools.build_meta"
[project]
name = "helloworld"
# version is populated by setuptools in setup.py (from VERSION.txt)
dynamic = ["version"]
description = "The familiar example program in Python"
# Newer versions of setuptools (that can detect metadata in pyproject.toml)
# don't seem to support python 2 anymore.
requires-python = ">= 3"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "A. Developer", email = "[email protected]" }
]
keywords = ["example", "documentation", "tutorial"]
[project.urls]
Homepage = "http://github.com/dbarnett/python-helloworld"
Repository = "http://github.com/dbarnett/python-helloworld"
# command-line executables to expose
[project.scripts]
helloworld_in_python = "helloworld.main:main"