-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
62 lines (57 loc) · 2.08 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
import imp
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 8):
sys.exit("Sorry, Python < 3.8 is not supported")
VERSION = imp.load_source("", "assemblyfire/version.py").__version__
setup(
name="assemblyfire",
authors=["Andras Ecker", "Michael Reimann", "Daniela Egas Santander"],
author_email="andras.ecker@epfl.ch",
version=VERSION,
description="find and analyze cell assemblies",
long_description=\
"""assemblyfire
============
find and analyze cell assemblies
""",
long_description_content_type="text/x-rst",
url="http://bluebrain.epfl.ch",
license="LGPL-3.0",
install_requires=["h5py>=3.8.0",
"pyyaml>=6.0",
"tqdm>=4.64.1",
"click>=8.1.3",
"cached-property>=1.5.2",
"numpy>=1.24.3",
"scipy>=1.10.1",
"pandas>=2.0.2",
"scikit-learn",
"libsonata>=0.1.21",
"neurom>=3.2.2",
"morph-tool>=2.9.1",
"bluepysnap>=1.0.5",
"Connectome-Utilities>=0.4.0",
# "bluecellulab>=1.2.7",
"pyflagser>=0.4.5",
"pyflagsercount>=0.3.3",
"matplotlib>=3.7.1",
"seaborn>=0.12.2"],
packages=find_packages(),
python_requires=">=3.8",
entry_points={"console_scripts": ["assemblyfire=assemblyfire.cli:cli"]},
extras_require={
"docs": ["sphinx", "sphinx-bluebrain-theme"]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)