-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.24 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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = ['biopython']
long_description = read('README.md')
setup(
name='FetchMGs',
version='1.3',
description='FetchMGs extracts the 40 marker genes from genomes and metagenomes in an easy and accurate manner.',
url='https://github.com/SushiLab/fetchmgs_dev',
author='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_description,
packages=['fetchmgs'],
download_url = "https://github.com/motu-tool/FetchMGs/archive/refs/tags/1.3.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',
]
)