-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 810 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
from setuptools import setup, find_packages
with open("requirements.txt", "r") as f:
requirements = f.read().strip().split("\n")
setup(
name = 'SnapHiC-D',
version = '0.1.0',
author = 'Lindsay Lee, Hongyu Yu',
author_email = 'hongyuyu@unc.edu',
license = 'GNU',
description = 'A computational pipeline to identify differential chromatin contacts from single cell Hi-C data',
long_description = open('README.md').read(),
long_description_content_type = "text/markdown",
url = 'https://github.com/lindsayhrlee/SnapHiC-D',
py_modules = ['run_SnapHiC_D', 'SnapHiC_D'],
packages = find_packages(),
install_requires = [requirements],
python_requires = '>=3.6.8',
entry_points = '''
[console_scripts]
SnapHiC-D=run_SnapHiC_D:main
'''
)