-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
46 lines (40 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "cogapp"
description = "Cog: A content generator for executing Python snippets in source files."
readme = "README.rst"
authors = [
{name = "Ned Batchelder", email = "[email protected]"},
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
]
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"]
build-backend = "setuptools.build_meta"