-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
63 lines (59 loc) · 1.74 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
import os
version = '2.1.1.dev0'
setup(name='wildcard.media',
version=version,
description="HTML5 audio and video integration with plone",
long_description="%s\n%s" % (
open("README.rst").read(),
open(os.path.join("docs", "HISTORY.txt")).read()
),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Plone :: 5.2",
],
keywords='video audio media plone tiny html5 mediaelement',
author='Nathan Van Gheem',
author_email='[email protected]',
url='https://github.com/collective/wildcard.media',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['wildcard'],
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools-git'],
install_requires=[
'setuptools',
'plone.transformchain',
'plone.app.dexterity',
'plone.autoform',
'plone.app.textfield',
'plone.namedfile>=5.4.0',
'plone.rfc822',
'plone.supermodel>=1.1',
'five.globalrequest',
'plone.api',
'requests',
'six',
],
extras_require={
'test': [
'plone.app.testing',
],
'youtube': [
'requests',
'oauthlib'
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
[celery_tasks]
meida = wildcard.media.tasks
""",
)