forked from code-on/django-chunks
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 839 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
import setuplib
packages, package_data = setuplib.find_packages(['chunks', 'chunks.templatetags', 'migrations'])
setup(name='django-chunks',
version='2.10',
description='Keyed blocks of content for use in your Django templates',
author='Ruslan Popov',
author_email='ruslan.popov@gmail.com',
url='https://github.com/RaD/django-chunks',
packages=packages,
package_data=package_data,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)