forked from jiaaro/django-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (34 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
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
setup(
name='django-alert',
version='0.7.4',
author='James Robert',
author_email='jiaaro@gmail.com',
description=('Send alerts, notifications, and messages based '
'on events in your django application'),
long_description=open('README.markdown').read(),
license='MIT',
keywords='django alerts notifications social',
url='https://djangoalert.com',
install_requires=[
"django >= 1.2",
],
packages=[
'alert',
'alert.management',
'alert.management.commands',
'alert.migrations',
],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)