Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

Commit

Permalink
Added a setup.py to django-oembed
Browse files Browse the repository at this point in the history
git-svn-id: https://django-oembed.googlecode.com/svn/trunk@29 4c08321d-174e-0410-8f1d-477679e35061
  • Loading branch information
floguy committed Jan 24, 2009
1 parent 261cd17 commit 329fee6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
@@ -0,0 +1,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,
install_requires=['setuptools'],
)

0 comments on commit 329fee6

Please sign in to comment.