-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1022 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Sociability_Learning",
version="1.0",
packages=["Sociability_Learning"],
author="Victor Lobato",
author_email="[email protected]",
description="Analysis pipeline for sociability learning experiments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NeLy-EPFL/Sociability_Learning",
install_requires=[
"colorcet",
"decord",
"flyplotlib",
"h5py",
"imageio",
"joblib",
"matplotlib",
"mplex",
"numba",
"numpy",
"opencv-contrib-python",
"opencv-python",
"pandas",
"pybaselines",
"pynndescent",
"PyYAML",
"scikit-image",
"scikit-learn",
"scikit_posthocs",
"scipy",
"seaborn",
"tqdm",
"umap-learn",
"utils2p",
],
)