-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 797 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (28 loc) · 797 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-bleach',
version="0.3.0",
description='Easily use bleach with Django models and templates',
author='Tim Heap',
author_email='tim@timheap.me',
url='https://bitbucket.org/tim_heap/django-bleach',
packages=find_packages(),
install_requires=[
'bleach',
'Django>=1.3',
],
package_data={},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)