-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (26 loc) · 878 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
31
32
33
34
from os.path import abspath, dirname, join, normpath
from setuptools import setup
setup(
# Basic package information:
name = 'django-clear-cache',
version = '0.3',
packages = (
'clear_cache',
'clear_cache.management',
'clear_cache.management.commands'
),
# Packaging options:
zip_safe = False,
include_package_data = True,
# Package dependencies:
install_requires = ['Django>=1.0'],
# Metadata for PyPI:
author = 'Randall Degges',
author_email = '[email protected]',
license = 'UNLICENSE',
url = 'https://github.com/rdegges/django-clear-cache',
keywords = 'django cache management memcached clear',
description = 'A simple Django management command which clears your cache.',
long_description = open(normpath(join(dirname(abspath(__file__)),
'README.md'))).read()
)