-
Notifications
You must be signed in to change notification settings - Fork 246
/
setup.py
36 lines (35 loc) · 1.04 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
33
34
35
36
from distutils.core import setup
setup(
name='django-messages',
version=__import__('django_messages').__version__,
description='User-to-user messaging system for Django',
long_description=open('README.rst').read(),
author='Arne Brodowski',
author_email='[email protected]',
url='https://github.com/arneb/django-messages',
install_requires=[
'Django'
],
packages=(
'django_messages',
'django_messages.templatetags',
'django_messages.migrations',
),
package_data={
'django_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',
),
)