-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (32 loc) · 868 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
from setuptools import setup
import punctatools
setup(
name='punctatools',
version=punctatools.__version__,
url='https://github.com/stjude/punctatools',
author="Anna Medyukhina",
author_email='anna.medyukhina@gmail.com',
packages=['punctatools',
'punctatools.lib'
],
license='Apache License 2.0',
include_package_data=True,
test_suite='punctatools.tests',
install_requires=[
'pyvcf<=0.4.3',
'cellpose',
'ipykernel',
'scipy',
'ddt',
'pytest',
'tqdm',
'scikit-image',
'pandas',
'seaborn',
'bokeh<2.5.0,>=2.4.0',
'holoviews',
'jupyter',
'am_utils @ git+https://github.com/amedyukhina/am_utils.git',
'intake_io @ git+https://github.com/bhoeckendorf/intake_io.git@v0.0.2',
],
)