forked from torchbox/wagtailmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (62 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
from wagtailmedia import __version__
import io
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',
'isort',
# Required for matrix build on Travis
'tox==3.9.0',
# Required for interactive testing via tox
'psycopg2-binary',
'django-redis-cache',
]
with io.open('README.md', encoding='utf-8') as readme_file:
long_description = readme_file.read()
setup(
name='wagtailmedia',
version=__version__,
description='A module for Wagtail that provides functionality '
'similar to wagtail.documents 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=long_description,
long_description_content_type='text/markdown',
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 :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Wagtail :: 2',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'wagtail>=2.2',
],
extras_require={
'testing': testing_extras,
},
zip_safe=False,
)