-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (36 loc) · 1.4 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
#from distutils.core import setup
from setuptools import find_packages, setup
from PePr import __version__
setup(name="PePr",
version=__version__, # change the version info in the PePr.__init__ file
author="Yanxiao Zhang",
author_email="[email protected]",
url="https://github.com/shawnzhangyx/PePr/",
license="GNU GPL v3",
description="Peak-calling and Prioritization pipeline for replicated ChIP-Seq data",
long_description="Peak-calling and Prioritization pipeline for replicated ChIP-Seq data",
platforms = ['any'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
packages=find_packages(),
package_data={"PePr": ['data/*.bed']},
install_requires=[
'numpy>=1.6.0',
'scipy>=0.14.0',
'pysam',
'sharedmem',
],
entry_points={
'console_scripts': [
'PePr=PePr.PePr:argless_main',
'PePr-preprocess=PePr.PePr:pre_processing_module',
'PePr-postprocess=PePr.post_processing.post_process_PePr:post_processing_module',
]
}
)