forked from nel-lab/mesmerize-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (44 loc) · 1.47 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
from setuptools import setup, find_packages
from pathlib import Path
install_requires = [
"pandas>=1.5.0",
"pytest",
"requests",
"tqdm",
"numpy",
"click",
"psutil",
"jupyterlab",
"filelock"
]
with open(Path(__file__).parent.joinpath("README.md")) as f:
readme = f.read()
with open(Path(__file__).parent.joinpath("mesmerize_core", "VERSION"), "r") as f:
ver = f.read().split("\n")[0]
classifiers = \
[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Information Analysis",
"Intended Audience :: Science/Research"
]
setup(
name="mesmerize-core",
description="High level pandas-based API for batch analysis of Calcium Imaging data using CaImAn",
long_description=readme,
long_description_content_type='text/markdown',
classifiers=classifiers,
version=ver,
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
url="https://github.com/nel-lab/mesmerize-core",
license="Apache-Software-License",
author="Kushal Kolar, Caitlin Lewis, Arjun Putcha",
author_email="",
)