forked from ViktorStiskala/django-shared-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.14 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
# coding=utf-8
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-shared-session',
version='0.4.0',
packages=['shared_session', 'shared_session.templatetags'],
include_package_data=True,
license='MPL',
description='Django session sharing across multiple domains running same application',
url='https://github.com/ViktorStiskala/django-shared-session',
author='Viktor Stískala',
author_email='viktor@stiskala.cz',
install_requires=[
'setuptools-git',
'django>=1.7',
'python-dateutil>=2.5',
'PyNaCl>=1.0.0',
'six>=1.11'
],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)