-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
149 lines (129 loc) · 4.87 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
import os
import re
import sys
from setuptools import find_packages, setup
VERSION = "1.4.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)),
)
SETTINGS = dict(
INSTALLED_APPS=[
"django.contrib.auth",
"django.contrib.admin",
"django.contrib.sessions",
"django.contrib.contenttypes",
"django.contrib.messages",
"gdpr_assist",
"tests",
"tests.tests_app",
],
MIDDLEWARE=[
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
],
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",
"django.template.context_processors.request",
]
},
}
],
GDPR_CAN_ANONYMISE_DATABASE=True,
ROOT_URLCONF="tests.tests_app.urls",
SECRET_KEY="test",
)
# Build database settings
MEMORY_DATABASE = {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}
DATABASE = MEMORY_DATABASE.copy()
GDPR_DATABASE = MEMORY_DATABASE.copy()
DATABASE["TEST"] = MEMORY_DATABASE.copy()
GDPR_DATABASE["TEST"] = MEMORY_DATABASE.copy()
engine = os.environ.get("DATABASE_ENGINE")
if engine:
if engine == "postgresql":
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
DATABASE["TEST"] = {"CHARSET": "utf8", "COLLATION": "utf8_general_ci"}
else:
raise ValueError("Unknown database engine")
DATABASE["NAME"] = os.environ.get(
"DATABASE_NAME", "test_gdpr_assist_%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, "gdpr_log": GDPR_DATABASE}
SETTINGS["DATABASE_ROUTERS"] = ["gdpr_assist.routers.EventLogRouter"]
# 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-gdpr-assist",
version=VERSION,
author="Wildfish",
author_email="[email protected]",
description=("GDPR tools for Django sites"),
license="BSD",
keywords="django gdpr",
url="https://github.com/wildfish/django-gdpr-assist",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
],
install_requires=["django-yaa-settings>=1.1"],
extras_require={
"dev": [
# Testing
"tox",
"pillow",
"model_bakery",
"freezegun",
# Docs
"sphinx",
"sphinx-autobuild",
"sphinx_rtd_theme",
]
},
zip_safe=True,
packages=find_packages(exclude=("docs", "tests*")),
include_package_data=True,
)