forked from codysoyland/django-inmemorystorage
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (27 loc) · 870 Bytes
/
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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-inmemorystorage",
version = "0.1.1",
url = 'http://github.com/codysoyland/django-inmemorystorage',
license = 'BSD',
description = "A non-persistent in-memory data storage backend for Django.",
long_description = README,
author = 'Cody Soyland',
author_email = '[email protected]',
packages = [
'inmemorystorage',
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)