forked from mhammell-laboratory/TEtranscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 985 Bytes
/
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
from setuptools import setup
def readme():
with open('README') as f:
return f.read()
setup(name='TEToolkit',
version='1.3.1',
description='Tools for estimating differential enrichment of Transposable Elements and other highly repetitive regions',
long_description=readme(),
classifiers=[
],
keywords='TE transposable element differential enrichment',
url='http://hammelllab.labsites.cshl.edu/software#TEToolkit',
author='Ying Jin, Eric Paniagua, Oliver Tam and Molly Hammell',
author_email='[email protected]',
license='GPLv3',
packages=[
'TEToolkit',
'TEToolkit.IO',
'TEToolkit.ShortRead'
],
platforms=[
'Linux',
'MacOS'
],
install_requires=[
'argparse',
'pysam>=0.8'
],
include_package_data=True,
zip_safe=False,
scripts=[
'bin/TEtranscripts',
'bin/TEpeaks'
]
)