-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
66 lines (62 loc) · 2.04 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
63
64
65
66
"""neuror setup.py"""
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 7):
sys.exit("Sorry, Python < 3.7 is not supported")
# read the contents of the README file
with open("README.rst", encoding='utf-8') as f:
README = f.read()
setup(
name='NeuroR',
author='Blue Brain Project, EPFL',
description='A morphology repair tool',
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/bluebrain/neuror",
license="LGPLv3",
install_requires=[
'click>=6.7',
'jsonschema',
'matplotlib>=2.2.3',
'morph-tool>=2.11.0,<3.0',
'morphio>=3.0.0,<4.0',
'neurom>=4.0.0',
'numpy>=1.19.2',
'nptyping>=2',
'pandas>=0.24.2',
'pyquaternion>=0.9.2',
'scipy>=1.2.0',
],
extras_require={
'plotly': [
'dash-core-components>=0.46.0', # HTML components
'dash-table>=3.6.0', # Interactive DataTable component (new!)
'dash>=0.41.0', # The core dash backend
'plotly-helper>=0.0.9,<1.0',
],
'docs': [
'sphinx-autorun>=1.1.1',
'sphinx-bluebrain-theme>=0.2.4',
'sphinx-click>=2.5.0',
'sphinx>=2.0.0',
],
},
packages=find_packages(exclude=('tests',)),
entry_points={'console_scripts': ['neuror=neuror.cli:cli']},
python_requires='>=3.7',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
use_scm_version=True,
setup_requires=['setuptools_scm'],
)