summaryrefslogtreecommitdiffstats
path: root/flit_core/flit_core/tests/samples/pep621_nodynamic/pyproject.toml
blob: 0b579f352c67fb351b206e37fe240998e93f2fd2 (plain)
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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "module1"
version = "0.03"
description = "Statically specified description"
authors = [
    {name = "Sir Robin", email = "robin@camelot.uk"}
]
readme = {file = "README.rst", content-type = "text/x-rst"}
classifiers = [
    "Topic :: Internet :: WWW/HTTP",
]
dependencies = [
    "requests >= 2.18",
    "docutils",
]  # N.B. Using this to check behaviour with dependencies but no optional deps

[project.urls]
homepage = "http://github.com/sirrobin/module1"

[project.scripts]
foo = "module1:main"

[project.gui-scripts]
foo-gui = "module1:main"