-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·70 lines (61 loc) · 1.91 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
#!/usr/bin/env python
# Copyright Collab 2012-2017
# See LICENSE for details.
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
# get version nr
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
'encode')))
from encode import version # flake8: noqa
sys.path.pop(0)
class Tox(TestCommand):
"""
Makes the `python setup.py test` command work with Tox.
"""
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import tox
errno = tox.cmdline(self.test_args)
sys.exit(errno)
setup(
name='django-encode',
packages=find_packages(),
include_package_data=True,
cmdclass={'test': Tox},
version=version,
description='Django media encoding.',
long_description=README,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'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'
],
author='Collab',
author_email='[email protected]',
url='http://github.com/collab-project/django-encode',
license='MIT',
install_requires=[
'celery>=3.1,<4.0',
'django-appconf>=0.6',
'django-queued-storage>=0.8.0'
],
tests_require=[
'tox'
],
)