-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
56 lines (50 loc) · 902 Bytes
/
setup.cfg
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
# setup.cfg
[metadata]
name = cmmvae
version = 0.1.2.dev2
description = A research project on conditional diagonal mixture-of-experts variational autoencoding (CMMVAE).
author = GVSU Applied Computing Institute
url = https://github.com/zdebruine/MMVAE
[flake8]
ignore =
E203,
E501,
W503,
E722,
E731,
F841,
F401
filename = src/*.py, tests/*.py
exclude = scripts/*
[options]
packages = find:
package_dir =
=src
install_requires =
torch
torchvision
torchaudio
torchdata
lightning
tensorboard
pulp==2.7.0
snakemake==7.32.4
omegaconf
scipy
cellxgene-census
psutil
tensorboard_plugin_profile
jsonargparse[signatures]>=4.29.0
click
pre-commit
[options.extras_require]
extra =
juypter
test =
pytest
pytest-cov
doc =
pdoc
[options.entry_points]
console_scripts =
cmmvae = cmmvae.main:main