-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: url description and keywords in setup (#657)
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,12 +29,12 @@ | |
packages=find_packages(), | ||
version=__version__, | ||
include_package_data=True, | ||
description='The data structure for unstructured data', | ||
description='Low-latency high-scalability service for embedding images and texts', | ||
author='Jina AI', | ||
author_email='[email protected]', | ||
license='Apache 2.0', | ||
url='https://github.com/jina-ai/docarray', | ||
download_url='https://github.com/jina-ai/docarray/tags', | ||
url='https://github.com/jina-ai/clip-as-service', | ||
download_url='https://github.com/jina-ai/clip-as-service/tags', | ||
long_description=_long_description, | ||
long_description_content_type='text/markdown', | ||
zip_safe=False, | ||
|
@@ -64,9 +64,9 @@ | |
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
project_urls={ | ||
'Documentation': 'https://docarray.jina.ai', | ||
'Source': 'https://github.com/jina-ai/docarray/', | ||
'Tracker': 'https://github.com/jina-ai/docarray/issues', | ||
'Documentation': 'https://clip-as-service.jina.ai/', | ||
'Source': 'https://github.com/jina-ai/clip-as-service', | ||
'Tracker': 'https://github.com/jina-ai/clip-as-service/issues', | ||
}, | ||
keywords='docarray deep-learning data-structures cross-modal multi-modal unstructured-data nested-data neural-search', | ||
keywords='clip docarray deep-learning data-structures cross-modal multi-modal unstructured-data nested-data neural-search', | ||
) |