-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 828 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 828 Bytes
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
import os
from setuptools import setup
VERSION = '0.1.0'
setup(
name='django-extmemcachedcache',
version=VERSION,
packages=['extmemcachedcache'],
description='Improved memcached cache backend for Django',
long_description=file(
os.path.join(os.path.dirname(__file__), 'README.rst')
).read(),
author='Vladyslav Bondar',
author_email='vladyslav.e.bondar@gmail.com',
license='BSD',
url='https://github.com/lemurchik/django-extmemcachedcache',
keywords='django cache memcached',
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
'Environment :: Web Environment',
]
)