-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 956 Bytes
/
setup.py
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
from setuptools import setup, find_packages
package_name = "maskedvae"
version = "1.0"
exclusions = []
_packages = find_packages(exclude=exclusions)
_base = [
"numpy",
"matplotlib",
"scipy",
"seaborn",
"scikit-learn",
"torch",
"pyyaml",
"wandb",
"torchvision",
"h5py",
"ipykernel",
]
_extras = {
"dev": [
"autoflake",
"black",
"deepdiff",
"flake8",
"isort",
"jupyter",
"pep517",
"pytest",
"pyyaml",
]
}
setup(
name=package_name,
version=version,
description="Modeling conditional distributions of neural and behavioral data with masked variational autoencoders",
author="Auguste Schulz",
author_email="[email protected]",
url="https://github.com/mackelab/neuro-behavior-conditioning.git",
packages=_packages,
install_requires=_base,
extras_require=_extras,
license="MIT",
)