forked from savon-noir/python-libnessus
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.44 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.44 KB
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
from setuptools import setup, find_packages
# if os.path.isfile('README.md'):
with open("README.md") as rfile:
long_decription = rfile.read()
long_description_content_type = 'text/markdown'
# elif os.path.isfile('README.rst'):
# with open("README.rst") as rfile:
# long_description = rfile.read()
# long_description_content_type = 'text/x-rst'
# else:
# long_description = ''
# long_description_content_type = 'text/markdown'
setup(
name='python-libnessus',
version='1.0.0.10',
author='Ronald Bister and Mike Boutillier',
author_email='michael.boutillier@gmail.com',
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.10',
license='Creative Common "Attribution" license (CC-BY) v3',
description=('Python Nessus module to parse, chat with XMLRPC API, ...'),
long_description=long_decription,
long_description_content_type=long_description_content_type,
classifiers=["Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Networking"]
)