forked from maraujop/django-persistent-messages
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
33 lines (32 loc) · 1.13 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
import os
from setuptools import setup, find_packages
setup(
name='django-monitio',
version='0.4.8',
description='Unified, persistent and dynamic user messages/notifications for Django',
long_description=open('README.md').read(),
author='mpasternak',
license='BSD',
url='http://github.com/mpasternak/django-monitio',
keywords = ['messages', 'django', 'persistent', 'sse'],
requires=['django_sse', 'sse', 'django(>=1.6)', 'corsheaders'],
packages=find_packages(exclude=['test_app', 'test_project']),
package_data={'monitio': [
'locale/*/LC_MESSAGES/*',
'static/monitio/js/*.js',
'static/monitio/js/themes/*.js',
'static/monitio/css/*.css',
'templates/*/*.html',
'templates/*/*/*.html',
'templates/*/*/*/*.html']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)