forked from gwu-libraries/django-profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 822 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name='django-profiles',
version='0.2',
description='User-profile application for Django',
author='James Bennett',
author_email='[email protected]',
url='http://www.bitbucket.org/ubernostrum/django-profiles/wiki/',
download_url='http://www.bitbucket.org/ubernostrum/django-profiles/get/v0.2.gz',
packages=['profiles'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)