forked from Adamtaranto/mimeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.43 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
pypi_classifiers = [
'Programming Language :: Python :: 3',
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics',
"Topic :: Software Development :: Libraries :: Python Modules",
'License :: OSI Approved :: MIT License',
]
install_requires = [
"pandas>=0.20.3",
'biopython>=1.70',
]
desc = """Scan genomes for internally repeated sequences, elements which are \
repetitive in another species, or high-identity HGT candidate regions between \
species."""
setup(name='mimeo',
version='1.1.1',
description=desc,
url='https://github.com/Adamtaranto/mimeo',
author='Adam Taranto',
author_email='adam.taranto@anu.edu.au',
license='MIT',
packages=['mimeo'],
classifiers=pypi_classifiers,
keywords=["Transposon", "TE", "WGA", "LASTZ", "Whole genome alignment",
"repeat", "transposition"],
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'mimeo-self=mimeo.run_self:main',
'mimeo-x=mimeo.run_interspecies:main',
'mimeo-map=mimeo.run_map:main',
'mimeo-filter=mimeo.run_filter:main',
],
},
)