forked from blabla1337/skf-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (36 loc) · 1.53 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='owasp-skf',
version='1.3.20',
description='The OWASP Security Knowledge Framework',
url='https://github.com/blabla1337/skf-flask',
author='Glenn ten Cate, Riccardo ten Cate',
author_email='[email protected], [email protected]',
license='AGPLV3',
packages=['skf'],
# trying to add files...
include_package_data = True,
long_description="""\
The Security Knowledge Framework is an fully open-source Python-Flask web-application.
It is an expert system application that uses OWASP Application Security Verification Standard
""",
install_requires=['markdown==2.6.2','BeautifulSoup', 'python-docx','lxml==3.4.2', 'cryptography==0.8.2', 'pyOpenSSL', 'requests', 'importlib', 'Bcrypt==1.1.1', 'flask-bcrypt'],
dependency_links= [
'https://github.com/mitsuhiko/flask/tarball/master#egg=Flask-owasp'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Software Development",
"Topic :: Security",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
])