-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
121 lines (107 loc) · 3.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
if sys.version_info[0] == 2:
# get the Py3K compatible `encoding=` for opening files.
from io import open
class PyTest(TestCommand):
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
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 pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
class Tox(TestCommand):
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
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
import shlex
args = self.tox_args
if args:
args = shlex.split(self.tox_args)
errno = tox.cmdline(args=args)
sys.exit(errno)
def make_readme(root_path):
consider_files = ('README.rst', 'LICENSE', 'CHANGELOG', 'CONTRIBUTORS')
for filename in consider_files:
filepath = os.path.realpath(os.path.join(root_path, filename))
if os.path.isfile(filepath):
with open(filepath, mode='r', encoding="utf-8") as f:
yield f.read()
HERE = os.path.abspath(os.path.dirname(__file__))
SHORT_DESC = """A reusable Django application for viewing and debugging all the data that has been pushed into Haystack"""
LONG_DESCRIPTION = "\r\n\r\n----\r\n\r\n".join(make_readme(HERE))
TROVE_CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Natural Language :: English',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Database :: Front-Ends',
'License :: OSI Approved :: BSD License',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
]
PACKAGES = find_packages()
setup(
name='django-haystackbrowser',
version='0.6.3',
description=SHORT_DESC,
author='Keryn Knight',
author_email='[email protected]',
license="BSD License",
keywords="django",
zip_safe=False,
long_description=LONG_DESCRIPTION,
url='https://github.com/kezabelle/django-haystackbrowser/tree/master',
packages=PACKAGES,
install_requires=[
'django-classy-tags>=0.3.4.1',
# as of now, django-haystack's latest version is 2.5.0, and explicitly
# doesn't support Django 1.10+
# So, we put this last, to ensure that it pegs the maximum version
# where packages with looser requirements may say otherwise.
'django-haystack>=1.2.0',
],
tests_require=[
'pytest==2.9.2',
'pytest-cov==2.2.1',
'pytest-django==2.9.1',
'pytest-mock==1.1',
'pytest-remove-stale-bytecode==2.1',
'Whoosh',
],
cmdclass={'test': PyTest, 'tox': Tox},
classifiers=TROVE_CLASSIFIERS,
platforms=['OS Independent'],
package_data={'': [
'templates/admin/haystackbrowser/*.html',
]},
)