forked from randomknowledge/django-webvideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.11 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
# coding=utf-8
from setuptools import setup
import django_webvideo
import finddata
setup(
name="django-webvideo",
author="Florian Finke",
author_email="[email protected]",
version=django_webvideo.__version__,
packages=['django_webvideo'],
package_data=finddata.find_package_data(),
url='https://github.com/randomknowledge/django-webvideo',
include_package_data=True,
license='MIT',
description='A queuing web video converter',
long_description=open('Readme.md').read(),
zip_safe=False,
install_requires=[
'Django==1.5',
'PIL==1.1.7',
'easy-thumbnails==1.2',
'rq==0.3.7',
'django-tastypie==0.9.12',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)