-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
17 lines (16 loc) · 941 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(name='bloom',
version='0.1',
description='Mobile pluggable applications for Django.',
author='Handi Mobility Inc.',
author_email='[email protected]',
url='http://code.google.com/p/django-bloom/',
packages=['bloom', 'bloom.device', 'bloom.device.templates', 'bloom.ad', 'bloom.ad.templatetags', 'bloom.image', 'bloom.image.templatetags', 'bloom.share', 'bloom.share.templates', 'bloom.sms', 'bloom.sms.lib', 'bloom.sms.lib.upside', 'bloom.track', 'bloom.user', 'bloom.utils'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)