forked from ay-lab/mustache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.12 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
# python3 setup.py sdist bdist_wheel && python3 -m twine upload dist/*
from setuptools import setup
from setuptools import find_packages
version_py = "mustache/_version.py"
exec(open(version_py).read())
setup(
name="mustache_hic",
version=__version__,
description='Mustache is a Hi-C analysis tool',
long_description="Mustache is a tool for multi-scale detection of chromatin loops from Hi-C and Micro-C contact maps in high resolutions (10kbp all the way to 500bp and even more).",
url='http://github.com/ay-lab/mustache/',
entry_points={
"console_scripts": ['mustache = mustache.mustache:main']
},
python_requires='>=3.5',
author='Ferhat Ay',
author_email='[email protected]',
license='MIT',
packages=['mustache'],
install_requires=[
'cooler',
'hic-straw',
'numpy',
'requests',
'scipy',
'pandas',
'statsmodels',
'pathlib',
],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
zip_safe=False,
)