-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (34 loc) · 928 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='tissue-tag',
version='0.2.2',
packages=find_packages(),
install_requires=[
'opencv-python',
'Pillow',
'bokeh',
'jupyter-bokeh',
'matplotlib',
'seaborn',
'scipy',
'scikit-image',
'tqdm',
'scikit-learn',
'holoviews',
'datashader',
'panel==1.3.8',
'jupyterlab'
],
author='Oren Amsalem, Nadav Yayon, Andrian Yang',
author_email='ny1@sanger.ac.uk',
description="Tissue Tag: jupyter image annotator",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/nadavyayon/TissueTag',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)