-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 917 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 917 Bytes
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
#from distutils.core import setup
from setuptools import setup, find_packages
VERSION = __import__("libopenvas").__version__
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: System :: Networking',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
install_requires = [
'xmltodict',
]
setup(
name="python-libopenvas",
description="OMP python API and report parser",
version=VERSION,
author="bGN4",
license='MIT License',
platforms=['OS Independent'],
url="https://github.com/bGN4/python-libopenvas",
packages=['libopenvas',],
include_package_data=True,
install_requires=install_requires,
classifiers=CLASSIFIERS,
)