-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (53 loc) · 1.56 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import re
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
version_str = None
VERSION_FILE = "qc3C/_version.py"
with open(VERSION_FILE, "rt") as vh:
for _line in vh:
mo = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", _line, re.M)
if mo:
version_str = mo.group(1)
break
if version_str is None:
raise RuntimeError("Unable to find version string in {}".format(VERSION_FILE))
setuptools.setup(
name='qc3C',
description='Hi-C quality control analysis',
long_description=long_description,
version=version_str,
author='Matthew Z DeMaere',
author_email='matt.demaere@gmail.com',
platforms='Linux-86_x64',
packages=setuptools.find_packages(),
url='https://github.com/cerebis/qc3C',
license='GNU Affero General Public License v3',
install_requires=[
'astropy<4.1',
'biopython==1.76',
'leven',
'json2html',
'numba',
'numpy<1.23',
'pandas',
'psutil',
'pysam',
'pytest',
'recordclass',
'scipy',
'simplejson',
'tqdm'
],
classifiers=[
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 5 - Alpha'
],
entry_points={
'console_scripts': ['qc3C=qc3C.command_line:main'],
}
)