-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.16 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
36
37
38
from setuptools import setup, find_packages
import os
version = __import__('oembedplugin').__version__
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'setuptools',
'oembed',
]
setup(
name = "django-oembedplugin",
version = version,
url = 'http://github.com/lucasvo/django-oembed',
license = 'BSD',
platforms=['OS Independent'],
description = "A django-cms plugin for embedding content from other sites. It uses the embed.ly api to generate oembed objects for over 160 sites.",
long_description = read('README.rst'),
author = 'Lucas Vogelsang',
author_email = '[email protected]',
packages=find_packages(),
install_requires = install_requires,
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)