-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 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
from setuptools import setup
install_requires = ['biopython',
'tqdm',
'pyrodigal ==3.6.3',
'pyhmmer ==0.10.15',
'psutil']
with open("README.md", "r") as fh:
long_desc = fh.read()
long_desc = "\n".join(long_desc.split("\n")[1:])
setup(
name='fetchMGs',
version='2.0.0',
description='FetchMGs extracts the 40 marker genes from genomes and metagenomes in an easy and accurate manner.',
url='https://github.com/motu-tool/FetchMGs',
author='Hans-Joachim Ruscheweyh, Chris Field, Shinichi Sunagawa, Daniel R. Mende',
author_email='[email protected]',
license='GPL-3.0',
include_package_data=True,
install_requires=install_requires,
long_description=long_desc,
long_description_content_type = "text/markdown",
packages=['fetchmgs'],
download_url = "https://github.com/motu-tool/FetchMGs/archive/refs/tags/2.0.0.tar.gz",
entry_points = {
'console_scripts': ['fetchMGs=fetchmgs.fetchmgs:main'],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
]
)