Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F1615894
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Mar 22, 5:07 AM
Size
1 KB
Mime Type
text/x-python
Expires
Tue, Mar 24, 5:07 AM (15 m, 43 s)
Engine
blob
Format
Raw Data
Handle
354033
Attached To
rDJANGONOCAPTCHA django-nocaptcha-recaptcha
setup.py
View Options
import
os
from
setuptools
import
setup
,
find_packages
def
read
(
fname
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
))
.
read
()
setup
(
name
=
'django-nocaptcha-recaptcha'
,
version
=
'0.0.20'
,
description
=
'Django nocaptcha recaptcha form field/widget app.'
,
long_description
=
read
(
'README.md'
),
author
=
'Imaginary Landscape'
,
author_email
=
'jjasinski@imgescape.com'
,
keywords
=
[
'django'
,
'recaptcha'
,
'field'
,
'nocaptcha'
],
license
=
'BSD'
,
url
=
'https://github.com/ImaginaryLandscape/django-nocaptcha-recaptcha'
,
packages
=
find_packages
(),
tests_require
=
[
'mock'
,
],
test_suite
=
"setuptest.setuptest.SetupTestSuite"
,
include_package_data
=
True
,
classifiers
=
[
"Framework :: Django"
,
"License :: OSI Approved :: BSD License"
,
"Operating System :: OS Independent"
,
"Intended Audience :: Developers"
,
"Programming Language :: Python :: 2.6"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3.4"
,
"Programming Language :: Python :: 3.5"
,
"Programming Language :: Python :: 3.6"
,
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
,
],
zip_safe
=
False
,
)
Event Timeline
Log In to Comment