-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (27 loc) · 1.01 KB
/
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
29
30
31
32
33
34
35
# reference: <https://packaging.python.org/en/latest/guides/writing-pyproject-toml/>
[project]
name = "acme_corp"
description = "A package, or box, created by the Acme Corporation for all of your Road Runner hunting needs."
# use semantic versioning: <https://semver.org/>
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
maintainers = [{name = "G. C. Runner", email = "[email protected]"}]
authors = [{name = "G. C. Runner", email = "[email protected]"}]
keywords = ["Piano", "Anvil", "Instant Tunnel"]
# these will be install with `pip install .`
dependencies = ["pyyaml"]
# these will only be installed with `pip install .[test]`
[project.optional-dependencies]
test =["pytest"]
[project.scripts]
do_thing = "acme_corp:do_task.do_task"
# these show up on the left bar on pypi.org
[project.urls]
Homepage = "https://github.com/cnerg/py-template"
[build-system]
requires = ["setuptools>=64.0.0"]
build-backend = "setuptools.build_meta"
[tools.pytest.ini_options]
minversion = "6.0"
junit_logging = "all"