-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 821 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
from distutils.core import setup
setup(
name = "mint_django_utils",
version = "0.0.10",
url = 'http://github.com/mintchaos/mint_django_utils',
license = 'BSD',
description = "A collection of utility functions, template tags and miscellany that I use for my djangos. Might only be useful to me.",
author = 'Christian Metts',
author_email = '[email protected]',
packages = [
'mint_django_utils',
'mint_django_utils.templatetags',
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)