-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.02 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.02 KB
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
from setuptools import setup, find_packages
setup(
name="cottage_analysis",
version="v2.0.4",
packages=find_packages(),
url="https://github.com/znamlab/cottage_analysis",
license="MIT",
author="Antonin Blot, Yiran He, Petr Znamenskiy",
author_email="antonin.blot@crick.ac.uk",
description="Common functions for analysis",
install_requires=[
"numpy",
"pandas",
"pathlib",
"matplotlib",
"scipy",
"tables",
"scikit-learn",
"tqdm",
"numba",
"numba_progress",
"scikit-image",
"defopt",
"black",
"tqdm",
"plotly",
"natsort",
"roifile",
"probeinterface",
"spikeinterface",
"lxml",
"pyarrow",
"fastparquet",
"flexiznam @ git+ssh://git@github.com/znamlab/flexiznam.git",
"znamutils @ git+ssh://git@github.com/znamlab/znamutils.git",
"floras_helpers @ git+ssh://git@github.com/takacsflora/floras-helpers.git",
],
)