forked from collective/collective.flowplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.67 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
from setuptools import setup, find_packages
import os
import sys
install_requires = [
'setuptools',
'plone.app.jquerytools',
# 'Plone', Too confusing for those using releases < 3.2
'hachoir_core',
'hachoir_metadata',
'hachoir_parser',
'archetypes.schemaextender',
]
version = '3.1.2.dev0'
tests_require = ['collective.testcaselayer', 'interlude']
if sys.version_info < (2, 6):
install_requires.append('simplejson')
setup(name='collective.flowplayer',
version=version,
description="A simple package using Flowplayer for video and audio content",
long_description=open("README.rst").read() + "\n\n" +
open(os.path.join("docs", "UPGRADE.txt")).read() + "\n\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='flv flash video plone',
author='Martin Aspeli',
author_email='[email protected]',
url='http://plone.org/products/collective-flowplayer',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir = {'':'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)