-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
32 lines (30 loc) · 916 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
from distutils.core import setup
setup(
name='django-sugar',
version='0.2',
license='BSD',
description='Curated collection of all the sweet Django helpers/utilities \
developers create, and sometimes recreate too often.',
author='Kevin Fricovsky',
author_email='[email protected]',
url='http://github.com/montylounge/django-sugar/tree',
packages=[
'sugar',
'sugar.admin',
'sugar.cache',
'sugar.forms',
'sugar.middleware',
'sugar.templatetags',
'sugar.views',
'sugar.widgets',
],
classifiers=[
'Development Status :: 2 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)