ericflo / django-oembed

A collection of Django tools which make it easy to change text filled with oembed links into the embedded objects themselves.

theju (author)
Tue Oct 13 08:08:09 -0700 2009
ericflo (committer)
Tue Oct 13 10:41:17 -0700 2009
commit  832deb9b184be97980fe437e83c5b23e412beb2a
tree    801273406e42c17b17a373f4cb4027733fe9203a
parent  ebc03a465996b8254e90c4070dacd24ae73af899
django-oembed / setup.py
100644 23 lines (21 sloc) 0.764 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
 
setup(
    name='django-oembed',
    version='0.1.0',
    description='A collection of Django tools which make it easy to change text filled with oembed links into the embedded objects themselves.',
    author='Eric Florenzano',
    author_email='floguy@gmail.com',
    url='http://django-oembed.googlecode.com',
    packages=find_packages(),
    classifiers=[
        'Development Status :: 3 - Alpha',
        '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,
)