-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
58 lines (51 loc) · 1.91 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
import os
from setuptools import setup, find_packages
import sys
try:
import numpy
except ImportError:
raise ImportError(
"Please install NumPy first, or use the Anaconda Python Distribution "
"(https://store.continuum.io/cshop/anaconda/) which comes with NumPy "
"installed."
)
version_py = os.path.join(os.path.dirname(__file__), 'metaseq', 'version.py')
version = open(version_py).read().split('=')[-1].strip().replace('"','')
requirements = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).readlines()
long_description = open('README.rst').read()
setup(
name='metaseq',
version=version,
description="Integrative analysis of high-thoughput sequencing data",
#long_description=long_description,
license="MIT",
install_requires=requirements,
packages=find_packages(),
package_data={
'metaseq':[
'test/data/gdc*',
'test/data/make_examples_from_pybedtools.py',
'test/data/x.*',
]
},
scripts=[
'metaseq/scripts/download_metaseq_example_data.py',
'metaseq/scripts/metaseq-cli',
'metaseq/scripts/speedtest.py',
],
author='Ryan Dale',
author_email='dalerr@niddk.nih.gov',
url='http://github.com/daler/metaseq',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
)