-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 988 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 988 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
29
30
31
32
33
34
35
36
37
38
import os
import sys
from setuptools import setup, find_packages, Command
install_requires = [
'Django>=1.3',
]
readme = []
with open('README.rst', 'r') as fh:
readme = fh.readlines()
setup(
name='django-zone-cache',
version='0.2',
url='https://github.com/ailabs/django-zone-cache/',
license='MIT',
author='Michael van Tellingen',
author_email='m.vantellingen@auto-interactive.nl',
description='Small library to add support for cache zones to Django cache',
long_description=''.join(readme),
install_requires=install_requires,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development'
],
test_suite='test.suite'
)