forked from danielfm/django-flash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'django-flash',
version = '1.9',
author = 'Daniel Fernandes Martins',
author_email = '[email protected]',
description = 'Django-flash is a simple Django extension which provides support for Rails-like flash messages.',
license = 'BSD',
platforms = ['Any'],
keywords = ['django', 'flash', 'session', 'scope', 'context', 'contrib'],
url = 'http://djangoflash.destaquenet.com/',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP'
],
install_requires = ['Django>=1.5'],
packages = find_packages('src'),
package_dir = {'':'src'},
include_package_data = True,
zip_safe = False,
test_suite = 'djangoflash.tests.suite',
)