mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Fixes issue 162: UnicodeDecodeError on pip install
This commit is contained in:
parent
142f49d919
commit
d724aab721
1 changed files with 3 additions and 2 deletions
5
setup.py
5
setup.py
|
|
@ -2,6 +2,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import codecs
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
VERSION = '1.6.1'
|
||||
|
|
@ -11,8 +12,8 @@ setup(
|
|||
version=VERSION,
|
||||
description="Keep track of failed login attempts in Django-powered sites.",
|
||||
long_description=(
|
||||
open("README.rst").read() + '\n' +
|
||||
open("CHANGES.txt").read()),
|
||||
codecs.open("README.rst", encoding='utf-8').read() + '\n' +
|
||||
codecs.open("CHANGES.txt", encoding='utf-8').read()),
|
||||
keywords='authentication, django, pci, security',
|
||||
author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova',
|
||||
author_email='codekoala@gmail.com',
|
||||
|
|
|
|||
Loading…
Reference in a new issue