forked from feincms/feincms-oembed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 1000 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·31 lines (28 loc) · 1000 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
31
#!/usr/bin/env python
from distutils.core import setup
import os
import setuplib
packages, package_data = setuplib.find_packages('feincms_oembed')
setup(name='feincms-oembed',
version=__import__('feincms_oembed').__version__,
description='OEmbed anything.',
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='FEINHEIT GmbH',
author_email='kontakt@feinheit.ch',
url='https://github.com/feincms/feincms-oembed/',
license='BSD License',
platforms=['OS Independent'],
packages=packages,
package_data=package_data,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)