-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·62 lines (57 loc) · 2.45 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
#!/usr/bin/env python
"""Description:
Setup script for haystack_bio -- Epigenetic Variability and Transcription Factor Motifs Analysis Pipeline
@status: beta
@version: $Revision$
@author: Luca Pinello, Rick Farouni
@contact: [email protected]
"""
from setuptools import setup
from haystack.haystack_common import check_required_packages
def main():
setup(
version="0.5.5",
name="haystack_bio",
include_package_data=True,
packages=["haystack"],
package_dir={'haystack': 'haystack'},
entry_points={
"console_scripts": ['haystack_pipeline = haystack.run_pipeline:main',
'haystack_hotspots = haystack.find_hotspots:main',
'haystack_motifs = haystack.find_motifs:main',
'haystack_tf_activity_plane = haystack.generate_tf_activity_plane:main',
'haystack_download_genome = haystack.download_genome:main',
'haystack_run_test = haystack.haystack_common:run_testdata']
},
description="Epigenetic Variability and Transcription Factor Motifs Analysis Pipeline",
maintainer= 'Luca Pinello , Rick Farouni',
maintainer_email='[email protected], [email protected]',
author='Luca Pinello, Rick Farouni',
author_email='[email protected], [email protected]',
url='https://github.com/pinellolab/haystack_bio',
classifiers=[
'Development Status :: 5 - Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX:: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python:: 2.7',
],
install_requires=[
'numpy==1.15.4',
'pandas>=0.21.0',
'matplotlib>=2.1.0',
'scipy>=1.0.0',
'jinja2>=2.9.6',
'tqdm>=4.19.4',
'weblogo>=3.5.0',
'bx-python>=0.7.3']
)
if __name__ == '__main__':
print("Checking Required Packages")
check_required_packages()
print("Installing Package")
main()