-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (49 loc) · 1.5 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "egga"
version = "0.1.9"
description = "Symbolic Geometric Algebra with E-Graphs "
authors = ["Robin Kahlow <[email protected]>"]
readme = "README.md"
packages = [{ include = "egga" }]
homepage = "https://github.com/RobinKa/egga"
repository = "https://github.com/RobinKa/egga"
license = "MIT"
keywords = [
"geometric-algebra",
"clifford-algebra",
"simplification",
"equations",
"egraph",
"egglog",
"multi-vector",
"para-vector",
"mathematics",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
egglog = "^0.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-xdist = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"