diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2020-04-15 23:33:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-15 23:33:16 +0200 |
| commit | fcb44c654228a210ed66533f6aa7847035cbf985 (patch) | |
| tree | c681cc52463ae6fab9f68c36e4f1edff6df84261 /setup.py | |
| parent | 4f90fb6a9236a9699e80c249153ba372bf308cb8 (diff) | |
| parent | 4eddbca81d7a9f7d2c8b7059a2b4d0787804cbb0 (diff) | |
Merge branch 'master' into fix_startpage_ValueError_on_spanish_datetime
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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, |