-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
35 lines (32 loc) · 1.02 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
from setuptools import setup
from setuptools import find_packages
version_py = "fithic/_version.py"
exec(open(version_py).read())
setup(
name = "fithic",
version =__version__,
description = 'Hi-C Analysis software created and maintained by the Ay Lab',
long_description = "Fit-Hi-C is a Hi-C software analysis tool to compute statistical confidence estimates to Hi-C contact maps. It is good. Very good.",
url = 'http://github.com/ay-lab/fithic/',
entry_points = {
"console_scripts": ['fithic = fithic.fithic:main']
},
python_requires = '~=3.6',
author = 'Ferhat Ay',
author_email = '[email protected]',
license = 'MIT',
packages = ['fithic'],
install_requires = [
'numpy',
'matplotlib',
'scipy',
'scikit-learn',
'sortedcontainers',
],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
zip_safe = False,
)