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-bootstrap: Use setuptools, add metadata
- Loading branch information
Matthias Koeppe
committed
Aug 12, 2022
1 parent
830d804
commit 632678c
Showing
5 changed files
with
31 additions
and
23 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,12 @@ | ||
include VERSION.txt | ||
include pyproject.toml | ||
include test | ||
include tox.ini | ||
# Avoid the "src" symlinks, which would be expanded to copies of the trees. | ||
prune sage_bootstrap/sage_root_source/build/pkgs/*/src | ||
# | ||
global-exclude .tox | ||
global-exclude *~* | ||
global-exclude *.bak | ||
global-exclude __pycache__ | ||
global-exclude *.pyc |
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 @@ | ||
9.7.beta8 |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
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
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 |
---|---|---|
@@ -1,18 +1,4 @@ | ||
#!/usr/bin/env sage-bootstrap-python | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name='sage_bootstrap', | ||
description='', | ||
author='Volker Braun', | ||
author_email='vbraun.name@gmail.com', | ||
packages=[ | ||
'sage_bootstrap', | ||
'sage_bootstrap.download', | ||
'sage_bootstrap.compat' | ||
], | ||
scripts=['bin/sage-package', 'bin/sage-download-file', 'bin/sage-bootstrap-python'], | ||
version='1.0', | ||
url='https://www.sagemath.org', | ||
) | ||
from setuptools import setup | ||
setup() |