-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.42 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('scanredirect').__version__
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-scanredirect',
version = VERSION,
description='Django app thats adds URL rules to redirect scripts looking for webapps exploits to their own IP ',
packages=['scanredirect'],
include_package_data=True,
author='Cooperative Quinode',
author_email='[email protected]',
license='BSD',
zip_safe=False,
install_requires = [],
long_description = open('README.rst').read(),
url = 'https://github.com/quinode/scanredirect/',
download_url = 'https://github.com/quinode/scanredirect/tarball/master',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Natural Language :: English',
'Natural Language :: French',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)