Mercurial > farol > farolluz
comparison setup.py @ 55:7653ffbec88b tip
Update setup.py
author | Benoît Allard <benoit.allard@greenbone.net> |
---|---|
date | Wed, 07 Jan 2015 12:02:23 +0100 |
parents | 4004b67216a9 |
children |
comparison
equal
deleted
inserted
replaced
54:6c320c3f3176 | 55:7653ffbec88b |
---|---|
33 version=__version__, | 33 version=__version__, |
34 description="Utilities to manipulate security advisories", | 34 description="Utilities to manipulate security advisories", |
35 long_description=long_description, | 35 long_description=long_description, |
36 author="Benoît Allard", | 36 author="Benoît Allard", |
37 author_email='benoit.allard@greenbone.net', | 37 author_email='benoit.allard@greenbone.net', |
38 url="https://wald.intevation.org/projects/farol/", | |
39 platforms=["any"], | |
40 keywords=["security", "advisory"], | |
38 license='GPLv2+', | 41 license='GPLv2+', |
39 packages=['farolluz', 'farolluz.parsers'], | 42 packages=['farolluz', 'farolluz.parsers'], |
40 include_package_data=True, | 43 include_package_data=True, |
41 scripts=['parse_cvrf', 'render'], | 44 scripts=['parse_cvrf', 'render'], |
42 install_requires=['Jinja2'], | 45 install_requires=['Jinja2'], |
43 test_suite='tests', | 46 test_suite='tests', |
47 classifiers=[ | |
48 'Development Status :: 5 - Production/Stable', | |
49 'Environment :: Console', | |
50 'Intended Audience :: Developers', | |
51 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', | |
52 'Natural Language :: English', | |
53 'Operating System :: OS Independent', | |
54 'Programming Language :: Python :: 2.7', | |
55 'Topic :: Security', | |
56 'Topic :: Software Development :: Libraries :: Python Modules', | |
57 'Topic :: Utilities', | |
58 ], | |
44 ) | 59 ) |