forked from philippWassibauer/django-threaded-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.07 KB
/
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
32
from distutils.core import setup
setup(
name='django-threaded-messages',
version=__import__('threaded_messages').__version__,
description='User-to-user threaded messaging system (similar to facebook) for Django',
author='Philipp Wassibauer, John Debs',
author_email='phil@gidsy.com',
url='https://github.com/philippWassibauer/django-threaded-messages',
download_url='https://github.com/philippWassibauer/django-threaded-messages',
packages=(
'threaded_messages',
'threaded_messages.templatetags',
),
package_data={
'threaded_messages': [
'templates/django_messages/*',
'templates/notification/*/*',
'locale/*/LC_MESSAGES/*',
]
},
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',
'Framework :: Django',
),
)