-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (65 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'setuptools',
'tqdm',
'pyyaml',
'click',
'numpy<=1.23',
'pooch',
'anndata',
'pandas',
'pyarrow',
'pyranges',
'scipy',
'matplotlib',
'seaborn',
'pysam',
'joblib',
'scikit-learn',
'pyBigWig',
'statsmodels',
'tensorflow',
'tensorflow-probability'
]
extras_require = {
'onnx': ['onnxruntime>=1.16'],
'hic': ['hic-straw'],
'all': ['onnxruntime>=1.16', 'hic-straw']
}
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest']
setup(
name='epiout',
version='0.0.1',
author="M. Hasan Çelik",
author_email='[email protected]',
url='https://github.com/muhammedhasan/epiout',
keywords=['genomics', 'ATAC-seq'],
description="EpiOut: outlier detection for DNA accesibility data.",
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
license="MIT license",
long_description=readme + '\n',
long_description_content_type='text/markdown',
install_requires=requirements,
setup_requires=setup_requirements,
extras_require=extras_require,
entry_points='''
[console_scripts]
epicount=epiout.main:cli_epicount
epiout=epiout.main:cli_epiout
epiannot=epiout.main:cli_epiannot
epiannot_create=epiout.main:cli_epiannot_create
epiannot_list=epiout.main:cli_epiannot_list
''',
packages=find_packages(include=['epiout*']),
include_package_data=True,
test_suite='tests',
tests_require=test_requirements,
)