-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (32 loc) · 1.01 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
authors = [
{ email = "[email protected]" },
{ name = "Ben Ruijl" },
{ email = "[email protected]" },
{ name = "Lucien Huber" },
{ email = "[email protected]" },
{ name = "Valentin Hischi" },
]
name = "symbolica-community"
summary = "Community-enhanced version of Symbolica: a blazing fast computer algebra system"
description = "Community-enhanced version of Symbolica: a blazing fast computer algebra system"
keywords = ["math", "algebra", "polynomial", "expression", "manipulation"]
version = "0.1.0"
readme = "Readme.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest"]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]
[tool.poetry]
package-mode = false