-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
26 lines (24 loc) · 1.01 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
from setuptools import setup, find_packages
with open("README.rst") as rfile:
long_description = rfile.read()
setup(
name='python-libnessus',
version='1.0.0.3',
author='Ronald Bister and Mike Boutillier',
author_email='[email protected]/[email protected]',
packages=find_packages(exclude=["*.test"]),
install_requires=[
'jsonpickle',
],
url='https://github.com/bmx0r/python-libnessus',
download_url='https://github.com/bmx0r/python-libnessus/tarball/1.0.0.2',
license='Creative Common "Attribution" license (CC-BY) v3',
description=('Python Nessus module to parse, chat with XMLRPC API, ...'),
long_description=long_description,
classifiers=["Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: System :: Networking"]
)