blob: 506a4eb594a8caefcb4740dae0108d81ad27a633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "package1"
author = "Sir Robin"
author-email = "robin@camelot.uk"
home-page = "http://github.com/sirrobin/package1"
# The sections below conflict
[tool.flit.scripts]
pkg_script = "package1:main"
[tool.flit.entrypoints.console_scripts]
foo = "bar:baz"
|