Mercurial > farol > farolluz
annotate 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 |
rev | line source |
---|---|
0 | 1 #! /usr/bin/env python |
2 # -*- coding: utf-8 -*- | |
3 # | |
4 # Authors: | |
5 # Benoît Allard <benoit.allard@greenbone.net> | |
6 # | |
7 # Copyright: | |
8 # Copyright (C) 2014 Greenbone Networks GmbH | |
9 # | |
10 # This program is free software; you can redistribute it and/or | |
11 # modify it under the terms of the GNU General Public License | |
12 # as published by the Free Software Foundation; either version 2 | |
13 # of the License, or (at your option) any later version. | |
14 # | |
15 # This program is distributed in the hope that it will be useful, | |
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 # GNU General Public License for more details. | |
19 # | |
20 # You should have received a copy of the GNU General Public License | |
21 # along with this program; if not, write to the Free Software | |
22 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | |
23 | |
24 from setuptools import setup | |
25 | |
26 from farolluz import __version__ | |
27 | |
28 with open('README.txt', 'rt') as f: | |
29 long_description = f.read() | |
30 | |
31 setup( | |
32 name='farolluz', | |
33 version=__version__, | |
34 description="Utilities to manipulate security advisories", | |
35 long_description=long_description, | |
36 author="Benoît Allard", | |
37 author_email='benoit.allard@greenbone.net', | |
55 | 38 url="https://wald.intevation.org/projects/farol/", |
39 platforms=["any"], | |
40 keywords=["security", "advisory"], | |
0 | 41 license='GPLv2+', |
42 packages=['farolluz', 'farolluz.parsers'], | |
2
5d81cea79583
setup.py: include_package_data is needed so that install works.
Benoît Allard <benoit.allard@greenbone.net>
parents:
0
diff
changeset
|
43 include_package_data=True, |
0 | 44 scripts=['parse_cvrf', 'render'], |
45 install_requires=['Jinja2'], | |
22
4004b67216a9
Add tests + method to change a ProductID
Benoît Allard <benoit.allard@greenbone.net>
parents:
2
diff
changeset
|
46 test_suite='tests', |
55 | 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 ], | |
0 | 59 ) |