-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (43 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "neural-geometry"
dynamic = ["version"]
description = "Latent Space Geometry for Neural Networks in Python"
authors = [
{ name="Anupam Bhakta", email="[email protected]" },
{ name="Adam Mehdi", email="[email protected]" },
{ name="Kevin Qiu", email="[email protected]" }
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries"
]
dependencies = [
"torch",
"numpy",
"tqdm",
]
[project.optional-dependencies]
vis = ["matplotlib", "networkx"]
dev = ["pytest", "tox", "tox-uv", "pre-commit"]
[project.urls]
Homepage = "https://github.com/ae-bii/neural-geometry"
Documentation = "https://ae-bii.github.io/neural-geometry/"
"Release notes" = "https://github.com/ae-bii/neural-geometry/releases"
Issues = "https://github.com/ae-bii/neural-geometry/issues"
[tool.setuptools]
packages = ["nlgm"]
[tool.setuptools.dynamic]
version = {attr = "nlgm.__version__"}