-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
46 lines (44 loc) · 1.47 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='TEtranscripts',
version='2.2.3',
description='Tools for estimating differential enrichment of Transposable Elements and other highly repetitive regions',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Environment :: Console',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix'
],
keywords='TE transposable element differential enrichment',
url='https://www.mghlab.org/software/tetranscripts',
author='Ying Jin, Eric Paniagua, Talitha Forcier, Oliver Tam, Molly Hammell',
author_email='mghcompbio@gmail.com',
license='GPLv3',
packages=[
'TEToolkit',
'TEToolkit.IO',
'TEToolkit.ShortRead'
],
platforms=[
'Linux',
'MacOS'
],
install_requires=[
'pysam>=0.9'
],
include_package_data=True,
zip_safe=False,
scripts=[
'bin/TEtranscripts',
'bin/TEcount'
]
)