-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.38 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.38 KB
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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
from multimedia import __version__ as version
with open('README.rst') as f:
readme = f.read()
setup(
name='django-multimedia',
version=version,
description='Encode and upload multimedia from the Django admin interface',
long_description=readme,
license='BSD',
author='Jason Bittel',
author_email='jason.bittel@gmail.com',
url='https://github.com/jbittel/django-multimedia',
download_url='https://pypi.python.org/pypi/django-multimedia/',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'celery>=3.1',
'django-storages',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['multimedia', 'media', 'audio', 'video', 'encoding', 'conversion'],
)