forked from 5monkeys/django-viewlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 1.33 KB
/
setup.py
File metadata and controls
45 lines (38 loc) · 1.33 KB
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
39
40
41
42
43
44
45
#!/usr/bin/env python
import os
import codecs
from setuptools import setup, find_packages
version = __import__('viewlet').__version__
setup(
name = "django-viewlet",
version = version,
description = "Render template parts with extended cache control.",
long_description = codecs.open(
os.path.join(
os.path.dirname(__file__),
"README.rst"
)
).read(),
author = "Jonas Lundberg",
author_email = "jonas@5monkeys.se",
url = "http://github.com/5monkeys/django-viewlet",
download_url = "https://github.com/5monkeys/django-viewlet/tarball/%s" % (version,),
keywords = ["django", "template", "cache", 'view', 'subview', 'decorator', 'refresh', 'invalidate'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'Topic :: Internet :: WWW/HTTP',
],
zip_safe = False,
packages = find_packages(exclude=["tests"]),
include_package_data = False,
dependency_links = [
],
install_requires = [
],
)