Mercurial > farol
annotate setup.py @ 178:e46fb0027e52 tip
Added tag 1.1.1 for changeset ae584cfe6252
author | Benoît Allard <benoit.allard@greenbone.net> |
---|---|
date | Thu, 08 Jan 2015 14:37:57 +0100 |
parents | aa41244fbec6 |
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 import os | |
25 | |
26 from setuptools import setup | |
27 | |
28 from farol import __version__ | |
29 | |
30 here = os.path.dirname(os.path.abspath(__file__)) | |
31 | |
32 with open(os.path.join(here, 'README.txt'), 'rt') as f: | |
33 long_description = f.read() | |
34 | |
35 setup( | |
36 name="farol", | |
37 version=__version__, | |
38 description="A Security Advisory Management Web Platform", | |
39 long_description=long_description, | |
40 author="Benoît Allard", | |
41 author_email='benoit.allard@greenbone.net', | |
174
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
42 url="https://wald.intevation.org/projects/farol/", |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
43 platforms=['any'], |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
44 keywords=['security', 'visualization', 'webapplication'], |
0 | 45 license='GPLv2+', |
46 packages=['farol'], | |
47 scripts=['run_web'], | |
169
2af7621bf57a
Update dependency on FarolLuz
Benoît Allard <benoit.allard@greenbone.net>
parents:
152
diff
changeset
|
48 install_requires=['farolluz >= 1.1.0', 'Flask'], |
0 | 49 test_suite='tests', |
174
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
50 classifiers=[ |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
51 'Development Status :: 5 - Production/Stable', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
52 'Environment :: Web Environment', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
53 'Framework :: Flask', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
54 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
55 'Natural Language :: English', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
56 'Programming Language :: Python :: 2.7', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
57 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
58 'Topic :: Security', |
aa41244fbec6
Update the setup.py
Benoît Allard <benoit.allard@greenbone.net>
parents:
169
diff
changeset
|
59 ], |
1
63b00c10ada8
Add Configuration support, warning when in DEBUG mode, and Deployment instruction
Benoît Allard <benoit.allard@greenbone.net>
parents:
0
diff
changeset
|
60 # Also install the templates and the static dir |
63b00c10ada8
Add Configuration support, warning when in DEBUG mode, and Deployment instruction
Benoît Allard <benoit.allard@greenbone.net>
parents:
0
diff
changeset
|
61 include_package_data=True, |
0 | 62 ) |