benoit@0: #! /usr/bin/env python benoit@0: # -*- coding: utf-8 -*- benoit@0: # benoit@0: # Authors: benoit@0: # Benoît Allard benoit@0: # benoit@0: # Copyright: benoit@0: # Copyright (C) 2014 Greenbone Networks GmbH benoit@0: # benoit@0: # This program is free software; you can redistribute it and/or benoit@0: # modify it under the terms of the GNU General Public License benoit@0: # as published by the Free Software Foundation; either version 2 benoit@0: # of the License, or (at your option) any later version. benoit@0: # benoit@0: # This program is distributed in the hope that it will be useful, benoit@0: # but WITHOUT ANY WARRANTY; without even the implied warranty of benoit@0: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the benoit@0: # GNU General Public License for more details. benoit@0: # benoit@0: # You should have received a copy of the GNU General Public License benoit@0: # along with this program; if not, write to the Free Software benoit@0: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. benoit@0: benoit@0: from setuptools import setup benoit@0: benoit@0: from farolluz import __version__ benoit@0: benoit@0: with open('README.txt', 'rt') as f: benoit@0: long_description = f.read() benoit@0: benoit@0: setup( benoit@0: name='farolluz', benoit@0: version=__version__, benoit@0: description="Utilities to manipulate security advisories", benoit@0: long_description=long_description, benoit@0: author="Benoît Allard", benoit@0: author_email='benoit.allard@greenbone.net', benoit@55: url="https://wald.intevation.org/projects/farol/", benoit@55: platforms=["any"], benoit@55: keywords=["security", "advisory"], benoit@0: license='GPLv2+', benoit@0: packages=['farolluz', 'farolluz.parsers'], benoit@2: include_package_data=True, benoit@0: scripts=['parse_cvrf', 'render'], benoit@0: install_requires=['Jinja2'], benoit@22: test_suite='tests', benoit@55: classifiers=[ benoit@55: 'Development Status :: 5 - Production/Stable', benoit@55: 'Environment :: Console', benoit@55: 'Intended Audience :: Developers', benoit@55: 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', benoit@55: 'Natural Language :: English', benoit@55: 'Operating System :: OS Independent', benoit@55: 'Programming Language :: Python :: 2.7', benoit@55: 'Topic :: Security', benoit@55: 'Topic :: Software Development :: Libraries :: Python Modules', benoit@55: 'Topic :: Utilities', benoit@55: ], benoit@0: )