-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 937 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from distutils.core import setup
setup(
name = 'django-cached-manager',
version = '0.0.1',
license = 'BSD',
description = 'Django models manager that encapsulates some common caching operations',
long_description = open('README.rst').read(),
author = 'Vlad Starostin',
author_email = '[email protected]',
packages = ['cached_manager',
'cached_manager.tests',
'cached_manager.tests.utils'],
classifiers = [
'Development Status :: 1 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)