forked from alexcwsmith/VAME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 843 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="vame",
version='1.0',
packages=find_packages(),
entry_points={"console_scripts": "vame = vame:main"},
author="K. Luxem & P. Bauer",
description="Variational Animal Motion Embedding.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LINCellularNeuroscience/VAME/",
setup_requires=[
"pytest",
],
install_requires=[
"pytest-shutil",
"scipy",
"numpy",
"matplotlib",
"pathlib",
"pandas",
"ruamel.yaml",
"scikit-learn",
"pyyaml",
"opencv-python",
"statsmodels",
"torch"
],
)