-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
45 lines (43 loc) · 1.54 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
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', to='rst', format='md')
long_description += "\n\n" + pypandoc.convert('AUTHORS.md', to='rst', format='md')
except (IOError, ImportError):
long_description = ''
setup(
name='wad',
version='0.4.6',
description='A tool for detecting technologies used by web applications.',
long_description=long_description,
url='https://github.com/CERN-CERT/WAD',
license='GPLv3',
author='Sebastian Lopienski',
author_email='sebastian.lopienski@cern.ch',
packages=find_packages(),
include_package_data=True,
requires=['six'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Security',
'Topic :: Internet :: WWW/HTTP',
],
entry_points={
'console_scripts': [
'wad = wad.__main__:main'
]
},
)