-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 970 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
from setuptools import find_packages, setup
description = """
Algorithms and evaluation code for real-time sharp wave-ripple detection.
"""
setup(
name="sharp",
version="1.0",
description=description,
author="Tomas Fiers",
author_email="tomas.fiers@gmail.com",
license="GPL-3.0",
install_requires=(
"torch",
"toml",
"h5py",
"click",
"typeguard",
"scikit-learn",
"psutil",
# Sqlalchemy is a Luigi dependency (but weirdly not in their setup.py).
"sqlalchemy",
"luigi[toml]==2.8.5",
#
# Custom-made dependencies, not available on PyPI, that should be
# installed manually before installing sharp:
# pip install -r requirements.txt
"seaborn==0.9.0+tomas",
"raincloud",
"fklab-python-core",
),
packages=find_packages(),
entry_points={"console_scripts": ["sharp=sharp.cmdline.main:main_cli"]},
)