-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (32 loc) · 716 Bytes
/
setup.py
File metadata and controls
44 lines (32 loc) · 716 Bytes
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
from setuptools import setup, find_packages
setup(
name='bmitools',
version='0.1.9',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'tqdm',
'scipy',
'matplotlib',
'pyyaml',
'networkx',
'scikit-learn',
'pandas',
'opencv-python',
'parmap',
],
long_description = """
BMI utilities and analysis tools
=================
...
.. code-block:: bash
pip install bmitools
Usage
-----
To use Binarize2PCalcium, import the package in your Python code:
.. code-block:: python
from bmitools import ...
""",
long_description_content_type='text/markdown',
)