forked from torchbox/wagtailmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (53 loc) · 1.75 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
52
53
54
55
56
57
58
59
#!/usr/bin/env python
from wagtailmedia import __version__
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
# Testing dependencies
testing_extras = [
# Required for running the tests
'mock>=1.0.0',
# For coverage and PEP8 linting
'coverage>=3.7.0',
'flake8>=2.2.0',
]
setup(
name='wagtailmedia',
version=__version__,
description='A module for Wagtail that provides functionality '
'similar to wagtail.wagtaildocs module, but for audio and video files.',
author='Mikalai Radchuk',
author_email='mikalai.radchuk@torchbox.com',
url='https://github.com/torchbox/wagtailmedia',
packages=find_packages(),
include_package_data=True,
license='BSD',
long_description='See https://github.com/torchbox/wagtailmedia for details',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'wagtail>=1.6.3',
],
extras_require={
'testing': testing_extras,
},
zip_safe=False,
)