This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
55 lines (48 loc) · 1.59 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
pyvas
=====================
An OpenVAS Managment Protocol (OMP) client for Python
"""
from __future__ import absolute_import, print_function
from glob import glob
from os.path import basename
from os.path import splitext
from codecs import open
from setuptools import setup
from setuptools import find_packages
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
setup(
name="pyvas",
version="0.5.1",
description="An OpenVAS Managment Protocol (OMP) v7 client for Python",
long_description=readme,
url="https://github.com/mpicard/pyvas",
author="Martin Picard",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
],
keywords="openvas omp client",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
install_requires=["six", "lxml"],
setup_requires=["pytest-runner"],
tests_require=["tox"],
)