-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
38 lines (34 loc) · 1.14 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="defectDojo_engagement_survey",
version="1.0.1",
description="DefectDojo Engagement Survey",
long_description=read('README.md'),
url="https://github.com/grendel513/defectDojo-engagement-survey",
author="Jay Paz",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=["django", "defectdojo", "risk" "survey", "security"],
zip_safe=False,
install_requires=[
'django-polymorphic',
'django-crispy-forms',
'django-overextends',
'django_extensions',
]
)