Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/pkgs/sage-docbuild/pyproject.toml
4081 views
1
[build-system]
2
requires = ["setuptools>=61.2"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "sage-docbuild"
7
description = "Sage: Open Source Mathematics Software: Build system of the Sage documentation"
8
license = {text = "GNU General Public License (GPL) v2 or later"}
9
authors = [{name = "The Sage Developers", email = "[email protected]"}]
10
classifiers = [
11
"Development Status :: 6 - Mature",
12
"Intended Audience :: Education",
13
"Intended Audience :: Science/Research",
14
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
15
"Operating System :: POSIX",
16
"Operating System :: MacOS :: MacOS X",
17
"Programming Language :: Python :: 3 :: Only",
18
"Programming Language :: Python :: 3.9",
19
"Programming Language :: Python :: 3.10",
20
"Programming Language :: Python :: 3.11",
21
"Programming Language :: Python :: 3.12",
22
"Programming Language :: Python :: Implementation :: CPython",
23
"Topic :: Scientific/Engineering :: Mathematics",
24
]
25
urls = {Homepage = "https://www.sagemath.org"}
26
dependencies = ["sphinx", "sphinx-copybutton"]
27
dynamic = ["version"]
28
29
[project.readme]
30
file = "README.rst"
31
content-type = "text/x-rst"
32
33
[tool.setuptools]
34
packages = [
35
"sage_docbuild",
36
"sage_docbuild.ext",
37
]
38
include-package-data = false
39
40
[tool.setuptools.dynamic]
41
version = {file = ["VERSION.txt"]}
42
43