forked from radiac/django-tagulous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
202 lines (182 loc) · 7.25 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import os
import re
import sys
from setuptools import setup, find_packages
VERSION = "0.13.2"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def runtests(args):
"Run tests"
import django
from django.conf import settings
from django.core.management import execute_from_command_line
if not settings.configured:
testenv = re.sub(
r'[^a-zA-Z0-9]', '_',
os.environ.get('TOXENV', '_'.join(str(v) for v in django.VERSION)),
)
tests_migration_module_name = 'migrations_{}'.format(testenv)
SETTINGS = dict(
INSTALLED_APPS=[
'django.contrib.auth',
'django.contrib.admin',
'django.contrib.sessions',
'django.contrib.contenttypes',
'django.contrib.messages',
'tagulous',
'tests',
'tests.tagulous_tests_app',
'tests.tagulous_tests_app2',
'tests.tagulous_tests_migration',
],
MIDDLEWARE=[
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
],
ROOT_URLCONF='tests.tagulous_tests_app.urls',
SERIALIZATION_MODULES={
'xml': 'tagulous.serializers.xml_serializer',
'json': 'tagulous.serializers.json',
'python': 'tagulous.serializers.python',
},
TEMPLATES=[{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
}],
MIGRATION_MODULES={
'tagulous_tests_migration': 'tests.tagulous_tests_migration.{}'.format(tests_migration_module_name),
},
TAGULOUS_NAME_MAX_LENGTH=191,
)
SETTINGS['SOUTH_MIGRATION_MODULES'] = SETTINGS['MIGRATION_MODULES']
# If yaml is available, add to serialisers
try:
import yaml
except ImportError:
pass
else:
SETTINGS['SERIALIZATION_MODULES']['yaml'] = 'tagulous.serializers.pyyaml'
# If south is required and available, add to installed apps
if django.VERSION < (1, 7):
try:
import south
except ImportError:
import warnings
warnings.warn(
"south not installed, needed for tests for Django %s" % (
'.'.join(str(v) for v in django.VERSION)
),
ImportWarning
)
else:
SETTINGS['INSTALLED_APPS'] += ['south']
# Backwards compatibility for middleware
if django.VERSION < (1, 10):
SETTINGS['MIDDLEWARE_CLASSES'] = SETTINGS['MIDDLEWARE']
# Build database settings
DATABASE = {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
engine = os.environ.get('DATABASE_ENGINE')
if engine:
if engine == "pgsql":
DATABASE['ENGINE'] = 'django.db.backends.postgresql_psycopg2'
DATABASE['HOST'] = 'localhost'
elif engine == "mysql":
DATABASE['ENGINE'] = 'django.db.backends.mysql'
# Make sure test DB is going to be UTF8
if django.VERSION < (1, 7):
DATABASE_TEST = {
'TEST_CHARSET': 'utf8',
'TEST_COLLATION': 'utf8_general_ci',
}
else:
DATABASE_TEST = {
'TEST': {
'CHARSET': 'utf8',
'COLLATION': 'utf8_general_ci',
}
}
DATABASE.update(DATABASE_TEST)
else:
raise ValueError("Unknown database engine")
DATABASE['NAME'] = os.environ.get('DATABASE_NAME', 'test_tagulous_%s' % testenv)
for key in ['USER', 'PASSWORD', 'HOST', 'PORT']:
if 'DATABASE_' + key in os.environ:
DATABASE[key] = os.environ['DATABASE_' + key]
SETTINGS['DATABASES'] = {'default': DATABASE, 'test': DATABASE}
# Make sure the django migration loader will find MIGRATION_MODULES
# This will be cleaned away after each test
tests_migration_path = os.path.join(
os.path.dirname(__file__), 'tests', 'tagulous_tests_migration',
)
if not os.path.isdir(tests_migration_path):
raise ValueError('tests.tagulous_tests_migration not found')
tests_migration_module_path = os.path.join(
tests_migration_path, tests_migration_module_name,
)
if not os.path.exists(tests_migration_module_path):
os.mkdir(tests_migration_module_path)
tests_migration_module_init = os.path.join(
tests_migration_module_path, '__init__.py',
)
if not os.path.exists(tests_migration_module_init):
open(tests_migration_module_init, 'a').close()
# Configure
settings.configure(**SETTINGS)
execute_from_command_line(args[:1] + ['test'] + (args[2:] or ['tests']))
if len(sys.argv) > 1 and sys.argv[1] == 'test':
runtests(sys.argv)
sys.exit()
setup(
name = "django-tagulous",
version = VERSION,
author = "Richard Terry",
author_email = "[email protected]",
description = ("Fabulous Tagging for Django"),
license = "BSD",
keywords = "django tagging",
url = "http://radiac.net/projects/django-tagulous/",
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.4',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
],
extras_require = {
'dev': ['tox', 'jasmine'],
'devdb': ['psycopg2', 'mysqlclient'],
'i18n': ['unidecode'],
},
zip_safe=True,
packages=find_packages(exclude=('docs', 'tests*',)),
include_package_data=True,
)