File: pyproject.toml

package info (click to toggle)
python-cogapp 3.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 388 kB
  • sloc: python: 3,449; makefile: 79
file content (33 lines) | stat: -rw-r--r-- 833 bytes parent folder | download
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
[project]
name = "cogapp"
description = "Cog: A content generator for executing Python snippets in source files."
readme = "README.rst"
authors = [
    {name = "Ned Batchelder", email = "ned@nedbatchelder.com"},
]
license = {file="LICENSE.txt"}
requires-python = ">= 3.9"
dynamic = ["version"]

[project.scripts]
cog = "cogapp:main"

[project.urls]
"Documentation" = "https://cog.readthedocs.io/"
"Code" = "http://github.com/nedbat/cog"
"Issues" = "https://github.com/nedbat/cog/issues"
"Funding" = "https://github.com/users/nedbat/sponsorship"
"Mastodon" = "https://hachyderm.io/@nedbat"

[tool.pytest.ini_options]
addopts = "-q -rfe"

[tool.setuptools]
packages = ["cogapp"]

[tool.setuptools.dynamic]
version.attr = "cogapp.cogapp.__version__"

[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"