forked from samluescher/django-persistent-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 846 Bytes
/
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
from setuptools import (
find_packages,
setup,
)
setup(
name='django-persistent-messages',
author='philomat',
maintainer='gjcourt',
version='0.1.2',
description='Persistent messages built on top of Django\'s messages framework',
long_description=open('README.md').read(),
license='MIT',
url='http://github.com/memorang/django-persistent-messages',
keywords=['messages', 'django', 'persistent',],
packages=find_packages(),
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',
],
include_package_data=True,
zip_safe=False,
)