-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
53 lines (47 loc) · 1.61 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def readme():
with open('README.txt') as f:
return f.read()
version = '0.4.0'
setup(
name='django-recaptcha3',
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 v3 field/widget',
long_description=readme(),
author='Andrea Briganti',
author_email='[email protected]',
url='https://github.com/kbytesys/django-recaptcha3',
download_url='https://github.com/kbytesys/django-recaptcha3/tarball/v%s' % version,
keywords=['django', 'recaptcha', 'recaptcha3'],
license='GNU LGPL v2',
classifiers=[
'Development Status :: 4 - Beta',
'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 :: 3',
'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'
]
)