-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
36 lines (33 loc) · 1.36 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
# -*- coding: utf-8; mode: python; -*-
"""
A package that implements offline messages for Django
Web Framework.
(C) 2011-2014 oDesk www.oDesk.com w/revisions by Zapier.com
"""
from setuptools import setup
setup(
name='django-offline-messages',
version='0.3.7',
description='A package that implements offline messages for Django plus more',
long_description='A package that implements offline messages for Django Web Framework',
license='BSD',
keywords='django offline messages',
url='https://github.com/dym/django-offline-messages',
author='oDesk, www.odesk.com',
author_email='[email protected]',
maintainer='Dmitriy Budashny',
maintainer_email='[email protected]',
packages=['offline_messages', 'offline_messages.migrations', 'offline_messages.south_migrations'],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='tests.runtests.runtests',
install_requires=['django-jsonfield'],
zip_safe=False
)