|
1
|
|
|
# -*- coding: utf-8 -*- |
|
2
|
|
|
# Copyright (C) 2014-2021 Greenbone Networks GmbH |
|
3
|
|
|
# |
|
4
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later |
|
5
|
|
|
# |
|
6
|
|
|
# This program is free software: you can redistribute it and/or modify |
|
7
|
|
|
# it under the terms of the GNU Affero General Public License as |
|
8
|
|
|
# published by the Free Software Foundation, either version 3 of the |
|
9
|
|
|
# License, or (at your option) any later version. |
|
10
|
|
|
# |
|
11
|
|
|
# This program is distributed in the hope that it will be useful, |
|
12
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
14
|
|
|
# GNU Affero General Public License for more details. |
|
15
|
|
|
# |
|
16
|
|
|
# You should have received a copy of the GNU Affero General Public License |
|
17
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
18
|
|
|
|
|
19
|
|
|
|
|
20
|
|
|
from setuptools import setup, find_packages |
|
21
|
|
|
|
|
22
|
|
|
from ospd_openvas import __version__ |
|
23
|
|
|
|
|
24
|
|
|
setup( |
|
25
|
|
|
name='ospd-openvas', |
|
26
|
|
|
version=__version__, |
|
27
|
|
|
packages=find_packages(exclude=['tests*']), |
|
28
|
|
|
url='https://github.com/greenbone/ospd-openvas', |
|
29
|
|
|
author='Greenbone Networks GmbH', |
|
30
|
|
|
author_email='[email protected]', |
|
31
|
|
|
license='AGPLv3+', |
|
32
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
|
33
|
|
|
classifiers=[ |
|
34
|
|
|
# How mature is this project? Common values are |
|
35
|
|
|
# 3 - Alpha |
|
36
|
|
|
# 4 - Beta |
|
37
|
|
|
# 5 - Production/Stable |
|
38
|
|
|
'Development Status :: 5 - Production/Stable', |
|
39
|
|
|
# Indicate who your project is intended for |
|
40
|
|
|
'Intended Audience :: Developers', |
|
41
|
|
|
'Intended Audience :: System Administrators', |
|
42
|
|
|
# Pick your license as you wish (should match "license" above) |
|
43
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', |
|
44
|
|
|
# Specify the Python versions you support here. In particular, ensure |
|
45
|
|
|
# that you indicate whether you support Python 2, Python 3 or both. |
|
46
|
|
|
'Programming Language :: Python :: 3.7', |
|
47
|
|
|
'Programming Language :: Python :: 3.8', |
|
48
|
|
|
], |
|
49
|
|
|
python_requires='>=3.7', |
|
50
|
|
|
install_requires=[ |
|
51
|
|
|
'ospd>=21.10.0.dev1', |
|
52
|
|
|
'redis>=3.0.1', |
|
53
|
|
|
'psutil', |
|
54
|
|
|
'packaging', |
|
55
|
|
|
], |
|
56
|
|
|
entry_points={'console_scripts': ['ospd-openvas=ospd_openvas.daemon:main']}, |
|
57
|
|
|
test_suite="tests", |
|
58
|
|
|
) |
|
59
|
|
|
|