-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
93 lines (88 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "versor"
version = "1.0.0"
description = "A PyTorch framework for Geometric Algebra Deep Learning"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Eunkyum Kim", email = "nemonanconcode@gmail.com" },
]
keywords = [
"geometric-algebra",
"clifford-algebra",
"deep-learning",
"pytorch",
"rotor",
"multivector",
"equivariant",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"torch>=2.0.0",
"numpy>=1.26.0",
"hydra-core>=1.3.2",
"tqdm>=4.67.3",
]
[project.urls]
Homepage = "https://github.com/Concode0/Versor"
Repository = "https://github.com/Concode0/Versor"
[project.optional-dependencies]
sr = [
"pmlb>=1.0.1.post3",
"scikit-learn>=1.3.0",
"sympy>=1.12",
]
md17 = [
"torch-geometric>=2.6.1",
]
lqa = [
"sentence-transformers>=5.1.2",
"datasets>=2.16.0,<4.0",
]
viz = [
"matplotlib>=3.8.0",
"seaborn>=0.13.0",
]
demo = [
"streamlit>=1.50.0",
"plotly>=6.5.2",
]
dev = [
"pytest>=7.0.0",
"pytest-xdist>=3.8.0",
]
all_tasks = [
"versor[sr,md17,lqa]",
]
all = [
"versor[sr,md17,lqa,viz,demo,dev]",
]
[tool.setuptools.packages.find]
include = ["core*", "layers*", "models*", "datalib*", "optimizers*", "functional*", "tasks*", "examples*", "experiments*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
markers = [
"slow: long-running tests (deselect with '-m \"not slow\"')",
"integration: tests requiring external data or network access",
"unit: fast, self-contained unit tests",
]
[dependency-groups]
dev = [
"mkdocs<2.0",
"mkdocs-material>=9.7.4",
"mkdocstrings[python]>=0.30.1",
"pymdown-extensions>=10.21",
]