-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (34 loc) · 1.18 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
46
47
48
49
50
import os
from setuptools import setup, find_packages
import blacklist
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
packages = find_packages()
packages.extend(['blacklist.management', 'blacklist.management.commands'])
setup(
name='django-blacklist',
version=blacklist.__version__,
description='Blacklist users and hosts in Django. Automatically blacklist rate-limited clients.',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/vsemionov/django-blacklist',
author='Victor Semionov',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security'
],
keywords='django blacklist ratelimit firewall',
packages=packages,
install_requires=[
'Django'
]
)