File: pyproject.toml

package info (click to toggle)
python-cogapp 3.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 332 kB
  • sloc: python: 3,081; makefile: 55
file content (47 lines) | stat: -rw-r--r-- 1,374 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[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.text = "MIT"
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Software Development :: Code Generators",
]
requires-python = ">= 3.7"
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"]
build-backend = "setuptools.build_meta"