summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNoémi Ványi <kvch@users.noreply.github.com>2020-04-15 23:33:16 +0200
committerGitHub <noreply@github.com>2020-04-15 23:33:16 +0200
commitfcb44c654228a210ed66533f6aa7847035cbf985 (patch)
treec681cc52463ae6fab9f68c36e4f1edff6df84261 /setup.py
parent4f90fb6a9236a9699e80c249153ba372bf308cb8 (diff)
parent4eddbca81d7a9f7d2c8b7059a2b4d0787804cbb0 (diff)
Merge branch 'master' into fix_startpage_ValueError_on_spanish_datetime
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index bd3dd5d1c..97a3270ef 100644
--- a/setup.py
+++ b/setup.py
@@ -10,6 +10,7 @@ import sys
# required to load VERSION_STRING constant
sys.path.insert(0, './searx')
from version import VERSION_STRING
+import brand
with open('README.rst') as f:
long_description = f.read()
@@ -25,6 +26,11 @@ setup(
version=VERSION_STRING,
description="A privacy-respecting, hackable metasearch engine",
long_description=long_description,
+ url=brand.DOCS_URL,
+ project_urls={
+ "Code": brand.GIT_URL,
+ "Issue tracker": brand.ISSUE_URL
+ },
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
@@ -36,7 +42,6 @@ setup(
keywords='metasearch searchengine search web http',
author='Adam Tauber',
author_email='asciimoo@gmail.com',
- url='https://github.com/asciimoo/searx',
license='GNU Affero General Public License',
packages=find_packages(exclude=["tests*"]),
zip_safe=False,