-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
67 lines (59 loc) · 2 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
64
65
66
67
#!/usr/bin/env python3
import os
from distutils.core import setup
from setuptools import find_packages
from mob_suite.version import __version__
author = 'James Robertson, Kyrylo Bessonov'
classifiers = """
Development Status :: 3 - Alpha
Environment :: Console
License :: OSI Approved :: Apache Software License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
""".strip().split('\n')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
exec(open('mob_suite/version.py').read())
setup(
name='mob_suite',
include_package_data=True,
version=__version__,
python_requires='>=3.7.0,<4',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=find_packages(exclude=['tests', 'databases']),
url='https://github.com/phac-nml/mob-suite',
license='GPLv3',
author='James Robertson',
author_email='[email protected]',
description=(
'MOB-suite is a set of tools for finding, typing and reconstruction of plasmids from draft and complete genome assemblies.'),
keywords='Plasmids finding typing reconstruction',
classifiers=classifiers,
package_dir={'mob_suite': 'mob_suite'},
package_data={'mob_suite': ['config.json']},
install_requires=[
'numpy>=1.11.1,<1.23.5',
'tables>=3.3.0,<4',
'pandas>=0.22.0,<=1.5.3',
'biopython>=1.8,<2',
'pycurl>=7.43.0,<8',
'scipy>=1.1.0,<2',
'ete3>=3.1.3,<4',
'six>=1.10,<2',
],
entry_points={
'console_scripts': [
'mob_init=mob_suite.mob_init:main',
'mob_recon=mob_suite.mob_recon:main',
'mob_cluster=mob_suite.mob_cluster:main',
'mob_typer=mob_suite.mob_typer:main',
],
},
)