forked from blabla1337/skf-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (37 loc) · 1.43 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='skf',
version='3.0.4',
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'],
include_package_data = True,
long_description="""\
The Security Knowledge Framework is an fully open-source Python Flask API.
It is an expert system application that uses OWASP Application Security Verification Standard and helps developers to do security by design.
""",
install_requires=required,
test_suite='tests.suite',
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",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
)