forked from a-roomana/django-multi-captcha-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (42 loc) · 1.4 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
#!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
try:
from pypandoc import convert
def read_me(filename):
return convert(filename, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
def read_me(filename):
return codecs.open(filename, encoding='utf-8').read()
setup(
name='django-multi-captcha-admin',
version='1.0.0',
packages=find_packages(),
include_package_data=True,
description=(
'easy added captcha to login page of django admin'
),
url='http://github.com/a-roomana/django-multi-captcha-admin',
download_url='https://pypi.python.org/pypi/django-multi-captcha-admin/',
author='Arman Roomana',
author_email='[email protected]',
keywords="django captcha recaptcha recaptcha2 simple-captcha admin",
license='MIT',
platforms=['any'],
install_requires=[
"django",
],
long_description=read_me('README.md'),
use_2to3=True,
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)