This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkgs/sage-setup (pyproject.toml): Convert from setup.cfg using ini2to…
…ml-0.11.3
- Loading branch information
Matthias Koeppe
committed
Dec 20, 2022
1 parent
e3de51a
commit 1c37625
Showing
2 changed files
with
48 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "sage-setup" | ||
description = "Sage: Open Source Mathematics Software: Build system of the Sage library" | ||
license = {text = "GNU General Public License (GPL) v2 or later"} | ||
authors = [{name = "The Sage Developers", email = "sage-support@googlegroups.com"}] | ||
classifiers = [ | ||
"Development Status :: 6 - Mature", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
] | ||
urls = {Homepage = "https://www.sagemath.org"} | ||
requires-python = ">=3.8, <3.12" | ||
dependencies = [ | ||
"pkgconfig", | ||
"jinja2", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.readme] | ||
file = "README.rst" | ||
content-type = "text/x-rst" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"sage_setup", | ||
"sage_setup.autogen", | ||
"sage_setup.autogen.interpreters", | ||
"sage_setup.autogen.interpreters.specs", | ||
"sage_setup.command", | ||
] | ||
include-package-data = false | ||
|
||
[tool.setuptools.dynamic] | ||
version = {file = ["VERSION.txt"]} |
This file was deleted.
Oops, something went wrong.