summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-07-21 14:27:49 +0200
committerGitHub <noreply@github.com>2021-07-21 14:27:49 +0200
commit4f0d232a3dc95042be809d6fa6e93ca746156658 (patch)
tree4155de82568afd651558cb91a5d59aa256577a19 /setup.py
parent17e028e57928f7925a2d1ee1177d28ff33ff8487 (diff)
parent19abaf272def8faee5e7d3652d95413c3256d638 (diff)
Merge pull request #213 from return42/drop-brand
[mod] drop searx.brand namespace
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 61227d199..b320524d3 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ import os
import sys
from searx.version import VERSION_STRING
-from searx import brand
+from searx import get_setting
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
@@ -24,10 +24,10 @@ setup(
version=VERSION_STRING,
description="A privacy-respecting, hackable metasearch engine",
long_description=long_description,
- url=brand.DOCS_URL,
+ url=get_setting('brand.docs_url'),
project_urls={
- "Code": brand.GIT_URL,
- "Issue tracker": brand.ISSUE_URL
+ "Code": get_setting('brand.git_url'),
+ "Issue tracker": get_setting('brand.issue_url')
},
classifiers=[
"Development Status :: 4 - Beta",