Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavsarpratik committed May 23, 2021
1 parent 71b7ba8 commit c4475b6
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
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/*
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sentence-transformers>=1.1
Empty file added semantic_search/__init__.py
Empty file.
1 change: 1 addition & 0 deletions semantic_search/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.0"
46 changes: 46 additions & 0 deletions setup.py
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,
)

0 comments on commit c4475b6

Please sign in to comment.