-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (28 loc) · 1.05 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
from distutils.core import setup
# Keeping all Python code for package in lib directory
NAME = 'cplate'
VERSION = '0.1'
AUTHOR = 'Alexander W Blocker'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://www.github.com/awblocker/cplate'
DESCRIPTION = 'Probabilistic deconvolution for chromatin-structure estimation.'
REQUIRES = ['numpy(>=1.6)','scipy(>=0.9)', 'yaml', 'mpi4py']
PACKAGE_DIR = {'': 'lib'}
PACKAGES = ['cplate']
SCRIPTS = ('deconvolve_em', 'deconvolve_mcmc', 'detect_em', 'detect_mcmc',
'summarise_mcmc', 'summarise_clusters_mcmc', 'summarise_params_mcmc',
'estimate_template', 'estimate_digestion_dist', 'segment_genome',
'simulate_null', 'betas_to_bed.py', 'clusters_to_bed.py',
'detections_to_bed.py')
SCRIPTS = ['scripts/cplate_' + script for script in SCRIPTS]
setup(name=NAME,
url=URL,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=PACKAGES,
package_dir=PACKAGE_DIR,
scripts=SCRIPTS,
requires=REQUIRES
)