forked from kbytesys/django-recaptcha2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (53 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def readme():
with open('README.txt') as f:
return f.read()
version = '1.4.1'
setup(
name='django-recaptcha2',
packages=find_packages(exclude=['samples']),
# package_data={'': ['']},
include_package_data=True,
version=version,
install_requires=[
'requests'
],
tests_require=(
['django-setuptest'],
),
test_suite='setuptest.setuptest.SetupTestSuite',
description='Django reCaptcha v2 field/widget',
long_description=readme(),
author='Andrea Briganti',
author_email='kbytesys@gmail.com',
url='https://github.com/kbytesys/django-recaptcha2',
download_url='https://github.com/kbytesys/django-recaptcha2/tarball/v%s' % version,
keywords=['django', 'recaptcha', 'recaptcha2'],
license='GNU LGPL v2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)