-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
65 lines (56 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "tfga"
packages = [{ include = "tfga" }]
version = "0.2.0"
authors = ["Robin Kahlow <[email protected]>"]
readme = "README.md"
description = "Clifford and Geometric Algebra with TensorFlow"
homepage = "https://github.com/RobinKa/tfga"
repository = "https://github.com/RobinKa/tfga"
documentation = "https://tfga.warlock.ai/"
license = "MIT"
keywords = [
"geometric-algebra",
"clifford-algebra",
"tensorflow",
"multi-vector",
"para-vector",
"mathematics",
"machine-learning",
]
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 :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
tensorflow = "^2.11.0"
numpy = "^1.20.0"
[tool.poetry.extras]
tf = ["tensorflow"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
black = "^23.1.0"
isort = "^5.12.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
sphinx-material = "^0.0.35"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"