https://github.com/AuReMe/metage2metabo
Revision b6277a08ec770299bd4b6e79c0bf0d81050d2975 authored by cfrioux on 22 March 2019, 08:22:28 UTC, committed by cfrioux on 22 March 2019, 08:22:28 UTC
1 parent e99a666
Raw File
Tip revision: b6277a08ec770299bd4b6e79c0bf0d81050d2975 authored by cfrioux on 22 March 2019, 08:22:28 UTC
add pypi shield
Tip revision: b6277a0
setup.py
#!/usr/bin/env python
# Copyright (c) 2019, Clemence Frioux <clemence.frioux@inria.fr>
#
# This file is part of metage2metabo.
#
# metage2metabo is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# metage2metabo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with metage2metabo.  If not, see <http://www.gnu.org/licenses/>.
# -*- coding: utf-8 -*-

from setuptools import setup

setup(
    name='Metage2Metabo',
    version='0.0.2',
    url='https://github.com/aureme/metage2metabo',
    license='GPLv3+',
    description=
    'Automatic reconstruction of draft metabolic networks with Pathway Tools and graph-based metabolic analysis',
    long_description=
    'metage2metabo is a Python3 workflow to perform graph-based metabolic analysis starting from annotated genomes. It uses Pathway Tools in a automatic and parallel way to reconstruct metabolic networks for a large number of genomes. The obtained metabolic networks are then analyzed individually and collectively in order to get the added value of cooperation in microbiota over individual metabolism, and to identify and screen interesting organisms among all. \
More information on usage and troubleshooting on Github: https://github.com/aureme/metage2metabo',
    author='AuReMe',
    author_email='gem-aureme@inria.fr',
    packages=['metage2metabo'],
    package_dir={'metage2metabo': 'metage2metabo'},
    #package_data={'metage2metabo': []},
    entry_points={
        'console_scripts': [
            'm2m = metage2metabo.__main__:main',
        ]
    },
    install_requires=['miscoto', 'menetools', 'mpwt', 'padmet', 'padmet-utils'],
)
back to top