-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (31 loc) · 967 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
"torch",
"torchvision",
"h5py",
"seaborn",
"pandas",
"numpy",
"matplotlib",
"scipy",
"scikit-learn",
"jupyter",
"tqdm",
"einops",
"POT"
]
setup(
name='erdiff',
version='0.1.0',
description="Extraction and recovery of spatio-temporal structure in latent dynamics alignment with diffusion model (ERDiff)",
long_description=readme,
author="Yule Wang",
author_email='[email protected]',
install_requires=requirements,
license="MIT license",
keywords='Computational Neuroscience, Neural Latent Dynamics Alignment, Diffusion Model, Neural decoding, Brain-computer Interfaces',
packages=find_packages(include=['VAE_Diffusion_CoTrain.py', 'MLA.py', 'model_functions'])
)