From 165e21ac42e722c44894788b284f4048fa464655 Mon Sep 17 00:00:00 2001 From: Han Xiao Date: Sun, 26 Apr 2020 12:43:09 +0200 Subject: [PATCH] chore: fix setup script --- .github/ISSUE_TEMPLATE/config.yml | 6 +++--- setup.py | 13 +++++-------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 3dc80c08d7ed0..74f5b2c715ec5 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,12 +1,12 @@ blank_issues_enabled: false contact_links: - - name: " 📚 Read Jina Docs" + - name: "📚 Read Jina Docs" url: https://docs.jina.ai/ about: Find your solution from our documenations - - name: " 🐣 Learn by Examples" + - name: "🐣 Learn by Examples" url: https://github.com/jina-ai/examples about: Learn from real-world examples - - name: " 🚏 Contributing Guideline" + - name: "🚏 Contributing Guideline" url: https://github.com/jina-ai/jina/blob/master/CONTRIBUTING.md about: Follow the guideline to make a good pull request # - name: "🔎 Search on Existing Issues" diff --git a/setup.py b/setup.py index 93abc062f10b3..4ee2291ab5d0d 100644 --- a/setup.py +++ b/setup.py @@ -72,14 +72,11 @@ def get_extra_requires(path, add_all=True): packages=find_packages(), version=__version__, include_package_data=True, - description='Jina is the cloud-native neural search solution ' - 'powered by AI and deep learning. ' - 'It provides a universal solution of large-scale index and query ' - 'for media contents.', - author='Jina Team and All Contributors', + description='Jina is the cloud-native neural search solution powered by the state-of-the-art AI and deep learning', + author='Jina Dev Team', author_email='dev-team@jina.ai', license='Apache 2.0', - url='https://jina.ai', + url='https://github.com/jina-ai/jina', download_url='https://github.com/jina-ai/jina/tags', long_description=_long_description, long_description_content_type='text/markdown', @@ -93,13 +90,13 @@ def get_extra_requires(path, add_all=True): 'console_scripts': ['jina=jina.main:main'], }, classifiers=( + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', - 'Programming Language :: Cython', 'Programming Language :: Unix Shell', 'Environment :: Console', 'License :: OSI Approved :: Apache Software License', @@ -116,5 +113,5 @@ def get_extra_requires(path, add_all=True): 'Topic :: Software Development :: Libraries :: Python Modules', ), keywords='jina cloud-native semantic query search index elastic neural-network encoding ' - 'embedding serving docker container image video audio lfai cncf', + 'embedding serving docker container image video audio deep-learning', )