-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.55 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "galgebra"
dynamic = ["version"]
description = "Symbolic Geometric Algebra/Calculus package for SymPy."
readme = "README.md"
license = {text = "BSD"}
authors = [
{name = "Alan Bromborsky"},
]
maintainers = [
{name = "Hugo Hadfield", email = "hadfield.hugo@gmail.com"},
]
requires-python = ">=3.10"
dependencies = ["sympy"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Documentation = "http://galgebra.readthedocs.io"
"Bug Tracker" = "https://github.com/pygae/galgebra/issues"
"Source Code" = "https://github.com/pygae/galgebra"
[tool.setuptools.dynamic]
version = {attr = "galgebra._version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["galgebra*"]
[tool.pytest.ini_options]
# The default also includes *_test.py. This matches some example scripts, which are
# not tests at all, and perform unwanted work and global configuration when
# pytest scans them for tests.
python_files = ["test_*.py"]
markers = [
"slow: marks tests as slow-running (deselect with '-m \"not slow\"')",
]