-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·46 lines (41 loc) · 1.63 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [
'matplotlib',
'rpy2'
]
setup(
name='encode_gsc',
version='0.9.1',
description='ENCODE Genome Structure Correction Tools',
long_description="""Assessing the significance of observations within large scale genomic studies using random subsampled genomic region is a difficult problem because there often exists a complex dependency structure between observations. GSC is a data subsampling approach based on a block stationary model for genomic features to alleviate the hidden dependencies. This model is motivated by earlier studies of DNA sequences, which show that there are global shifts in base composition, but that certain sequence characteristics are locally unchanging.""",
author="ENCODE",
url='https://www.encodeproject.org/software/gsc/',
packages=[
'encode_gsc',
],
scripts=[
'block_bootstrap.py',
'segmentation.py',
],
package_dir={'encode_gsc': 'encode_gsc'},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
keywords='ENCODE Genome Structure Correction',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)