-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.09 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.09 KB
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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from distutils.core import setup
import os
import sys
reload(sys).setdefaultencoding("UTF-8")
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='django-session-attachments',
version='0.2.2',
author='NetAngels',
author_email='info@netangels.ru',
packages=['session_attachments'],
url='http://github.com/NetAngels/django-session-attachments',
license='BSD License',
description=(u'Django app to handle attachments (temporary uploads) '
u'grouped by sessions and bundles. Even for anonymous users'),
long_description=read('README.rst'),
install_requires=['Django', ],
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)