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/sagemath-polyhedra/MANIFEST.in.m4: Include more
- Loading branch information
Matthias Koeppe
committed
Aug 28, 2021
1 parent
a301f70
commit 8ea1332
Showing
2 changed files
with
28 additions
and
14 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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
dnl MANIFEST.in is generated from this file by SAGE_ROOT/bootstrap via m4. | ||
|
||
dnl Include all from sagemath-objects (via m4 include) | ||
include(`../sagemath_objects/src/MANIFEST.in') | ||
|
||
# Extra in sagemath-categories: | ||
global-include all__sagemath_categories.py | ||
graft sage/categories | ||
include sage/misc/prandom.* # dep of sage/rings/ring | ||
include sage/rings/ideal.* | ||
include sage/rings/ring.* | ||
graft sage/typeset # dep of sage.categories.tensor | ||
# include sage/rings/integer*.* # depends on cypari, flint - https://trac.sagemath.org/ticket/30022 | ||
# include sage/rings/rational*.* | ||
# include sage/rings/infinity.* | ||
dnl Include all from sagemath-categories (via m4 include) | ||
include(`../sagemath_categories/src/MANIFEST.in') | ||
|
||
# Extra in sagemath-polyhedra: | ||
|
||
include sage/rings/integer*.* | ||
include sage/rings/rational*.* | ||
#include sage/rings/infinity.* | ||
|
||
graft sage/data_structures | ||
exclude sage/data_structures/bounded_integer_sequences.* # depends on flint | ||
|
||
graft sage/geometry | ||
prune sage/geometry/hyperbolic_space | ||
prune sage/geometry/riemannian_manifolds |
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = [ | ||
esyscmd(`sage-get-system-packages install-requires-toml \ | ||
setuptools \ | ||
wheel \ | ||
sage_setup \ | ||
cython \ | ||
gmpy2 \ | ||
cysignals \ | ||
memory_allocator \ | ||
')] | ||
build-backend = "setuptools.build_meta" |