@@ -3,7 +3,7 @@ Author: Raphael Grewe <raphael.grewe@greenbone.net>
33
44--- /dev/null
55+++ /setup.py
6- @@ -0,0 +1,62 @@
6+ @@ -0,0 +1,59 @@
77+ # -*- coding: utf-8 -*-
88+ # Copyright (C) 2018-2021 Greenbone Networks GmbH
99+ #
@@ -30,39 +30,36 @@ Author: Raphael Grewe <raphael.grewe@greenbone.net>
3030+
3131+ from setuptools import setup, find_packages
3232+
33+ + from gvm import get_version
34+ +
3335+ __here__ = Path(__file__).parent.resolve()
3436+
3537+ sys.path.insert(0, str(__here__))
3638+
37- + from gvm import get_version
38- +
3939+
4040+ with (__here__ / "README.md").open("r") as f:
4141+ long_description = f.read()
4242+
4343+ setup(
44- + name=' python-gvm' ,
44+ + name=" python-gvm" ,
4545+ version=get_version(),
46- + author=' Greenbone Networks GmbH' ,
47- + author_email=' info@greenbone.net' ,
48- + description=' Library to communicate with remote servers over GMP or OSP' ,
46+ + author=" Greenbone Networks GmbH" ,
47+ + author_email=" info@greenbone.net" ,
48+ + description=" Library to communicate with remote servers over GMP or OSP" ,
4949+ long_description=long_description,
50- + long_description_content_type=' text/markdown' ,
51- + url=' https://github.com/greenbone/python-gvm' ,
52- + packages=find_packages(exclude=[' tests' ]),
53- + install_requires=[' paramiko', ' lxml', ' defusedxml' ],
54- + python_requires=' >=3.7' ,
50+ + long_description_content_type=" text/markdown" ,
51+ + url=" https://github.com/greenbone/python-gvm" ,
52+ + packages=find_packages(exclude=[" tests" ]),
53+ + install_requires=[" paramiko", " lxml", " defusedxml" ],
54+ + python_requires=" >=3.9" ,
5555+ classifiers=[
5656+ # Full list: https://pypi.org/pypi?%3Aaction=list_classifiers
57- + 'Development Status :: 5 - Production/Stable',
58- + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
59- + 'Environment :: Console',
60- + 'Intended Audience :: Developers',
61- + 'Programming Language :: Python :: 3.5',
62- + 'Programming Language :: Python :: 3.6',
63- + 'Programming Language :: Python :: 3.7',
64- + 'Programming Language :: Python :: 3.8',
65- + 'Operating System :: OS Independent',
66- + 'Topic :: Software Development :: Libraries :: Python Modules',
57+ + "Development Status :: 5 - Production/Stable",
58+ + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
59+ + "Environment :: Console",
60+ + "Intended Audience :: Developers",
61+ + "Programming Language :: Python :: 3.9",
62+ + "Operating System :: OS Independent",
63+ + "Topic :: Software Development :: Libraries :: Python Modules",
6764+ ],
6865+ )
0 commit comments