-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·46 lines (37 loc) · 1.25 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
#!/usr/bin/env python
# This file is a part of the YouTube Import plugin for MediaCore CE.
# The source code contained in this file is licensed under the GPL v3 (or at
# your option any later version).
# See LICENSE.txt in the main project directory for more information.
import sys
from setuptools import setup, find_packages
dependencies = [
'babel',
'MediaCore >= 0.10.0b1',
'simplejson',
]
if sys.version_info < (2, 7):
dependencies.append('argparse')
setup(
name='MCYouTubeImport',
version='0.10.2dev',
author='Felix Schwarz',
author_email='info@schwarz.eu',
license='GPL v3 or later', # see LICENSE.txt
packages=find_packages(),
namespace_packages = ['mediacoreext'],
include_package_data=True,
install_requires=dependencies,
entry_points = {
'mediacore.plugin': [
'youtube_import = mediacoreext.youtube_import.mediacore_plugin',
],
'console_scripts': [
'import-youtube-videos = mediacoreext.youtube_import.cli:import_command',
]
},
message_extractors = {'mediacoreext/youtube_import': [
('**.py', 'python', None),
('templates/**.html', 'genshi', {'template_class': 'genshi.template.markup:MarkupTemplate'}),
]},
)