-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.91 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pi-vae-pytorch"
dependencies = ["torch>=2.0"]
requires-python = ">= 3.9"
authors = [
{name = "Marlan McInnes-Taylor", email = "mmcinnestaylor@gmail.com"}
]
maintainers = [
{name = "Marlan McInnes-Taylor", email = "mmcinnestaylor@gmail.com"}
]
description = "A Pytorch implementation of Poisson Identifiable VAE (pi-VAE), a variational auto encoder used to construct latent variable models of neural activity while simultaneously modeling the relation between the latent and task variables."
readme = "README.md"
keywords = [
"artificial intelligence",
"deep learning",
"vae",
"variational autoencoder",
"pi-vae",
"poisson identifiable vae",
"poisson identifiable variational autoencoder",
"identifiable vae",
"identifiable variational autoencoder"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT 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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/mmcinnestaylor/pi-vae-pytorch"
Documentation = "https://mmcinnestaylor.github.io/pi-vae-pytorch/"
Download = "https://github.com/mmcinnestaylor/pi-vae-pytorch/tags"
Repository = "https://github.com/mmcinnestaylor/pi-vae-pytorch.git"
Issues = "https://github.com/mmcinnestaylor/pi-vae-pytorch/issues"
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]