-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (38 loc) · 1.31 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
"""
django-httpsiframecookiesetter
-----------------
A workaround for Safari\'s strict cookie policy when trying to write cookies from within an iframe under http
"""
from setuptools import setup, find_packages
setup(
name='django-httpsiframecookiesetter',
version='0.0.7',
url='https://github.com/philroche/django-httpsiframecookiesetter',
license='Public Domain',
author='Philip Roche',
author_email='[email protected]',
description='A workaround for Safari\'s strict cookie policy when trying to write cookies from within an iframe under https',
keywords = "django safari cookie https",
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'django',
'pyyaml',
'ua-parser',
'user-agents'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)