-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71b7ba8
commit c4475b6
Showing
5 changed files
with
82 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This workflows will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: publish to PyPI | ||
if: github.event_name != 'pull_request' | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
sentence-transformers>=1.1 |
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.0.0" |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
import io | ||
import os | ||
|
||
from setuptools import find_packages, setup | ||
|
||
# Package meta-data. | ||
NAME = "semantic_search" | ||
DESCRIPTION = "Make semantic search easier" | ||
URL = "https://github.com/bhavsarpratik/semantic-search" | ||
EMAIL = "pratik.a.bhavsar@gmail.com" | ||
AUTHOR = "Pratik Bhavsar" | ||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
# Import the README and use it as the long-description. | ||
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file! | ||
with io.open(os.path.join(here, "README.md")) as f: | ||
long_description = "\n" + f.read() | ||
|
||
# Load the package's __version__.py module as a dictionary. | ||
about = {} | ||
with open(os.path.join(here, NAME, "__version__.py")) as f: | ||
exec(f.read(), about) | ||
|
||
# Load requirements file | ||
with open(os.path.join(here, "requirements.txt")) as f: | ||
INSTALL_PACKAGES = f.read().splitlines() | ||
|
||
setup( | ||
name=NAME, | ||
version=about["__version__"], | ||
description=DESCRIPTION, | ||
long_description=long_description, | ||
author=AUTHOR, | ||
author_email=EMAIL, | ||
url=URL, | ||
packages=find_packages(exclude=("tests", "notebooks", "data")), | ||
test_suite="tests", | ||
include_package_data=True, | ||
zip_safe=False, # the package can run out of an .egg file | ||
install_requires=INSTALL_PACKAGES, | ||
) |