-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·63 lines (56 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
59
60
61
62
63
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys, os
def readme():
with open('README.md') as f:
return f.read()
if sys.version_info.major != 3:
sys.exit("mim-tRNAseq can only be used with Python 3. You are currently "
"running Python %d." % sys.version_info.major)
# load version info
exec(open("mimseq/version.py").read())
# assemble package data files
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = package_files('mimseq/data')
setup(name='mimseq',
version=__version__,
description='Custom high-throughput tRNA sequencing alignment and quantification pipeline based on modification induced misincorporation cDNA synthesis.',
#long_description=readme(),
url='https://github.com/nedialkova-lab/mim-tRNAseq',
author='Drew Behrens',
author_email='[email protected]',
license='GPLv3',
packages=['mimseq'],
package_dir={'mimseq': 'mimseq'},
package_data={'mimseq': extra_files},
# data_files = [('fastq', ['mimseq_hek_1.fastq.gz','mimseq_hek_2.fastq.gz','mimseq_k562_1.fastq.gz','mimseq_k562_2.fastq.gz']),
# ('sampledata', ['sampleData_HEKvsK562.txt'])],
entry_points={"console_scripts": ["mimseq = mimseq.mimseq:main"]},
include_package_data=True,
install_requires=[
"biopython",
"pandas",
"numpy",
"pyfiglet",
"pysam",
"pytest",
"seaborn",
"matplotlib",
"pybedtools",
"requests",
"statsmodels"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
zip_safe=False)