forked from PixxxeL/django-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (33 loc) · 999 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
32
33
34
from distutils.core import setup
import django_ffmpeg
setup(
name = "django-ffmpeg",
version = django_ffmpeg.__version__,
packages = ["django_ffmpeg"],
url = 'https://github.com/pixxxel/django-ffmpeg',
author = 'pixel',
author_email = 'ivan.n.sergeev@gmail.com',
maintainer = 'pixel',
maintainer_email = 'ivan.n.sergeev@gmail.com',
license = 'MIT',
description = 'Download and encode video files by using ffmpeg utilit',
download_url = 'https://github.com/pixxxel/django-ffmpeg/archive/master.zip',
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
],
package_data = {
'django_ffmpeg': [
'fixtures/*.json',
'locale/*/LC_MESSAGES/*',
'management/*.py',
'management/commands/*.py',
'migrations/*.py',
],
},
include_package_data = True,
install_requires = [
'Django',
'Pillow',
],
)