-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 986 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 986 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
from setuptools import setup
setup(
name='PySNAIL',
version='0.4.0',
description="""Python Implementation for Smooth-quantile Normalization Adaptation for Inference of co-expression Links (PySNAIL)""",
url='https://github.com/dn070017/Caiman',
author='Ping-Han Hsieh',
author_email='dn070017@gmail.com',
license='MIT',
packages=['pysnail'],
install_requires=[
'bokeh>=2.2.0',
'numpy>=1.19.1',
'pandas>=1.1.1',
'pandarallel>=1.5.4',
'scipy>=1.5.2',
'tqdm>=4.62.3'
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points={
'console_scripts': [
'pysnail = pysnail.__main__:main'
],
},
zip_safe=False,
python_requires='>=3.7.7',
)