diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 59622dd..88ea316 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/pypi-release.yaml b/.github/workflows/pypi-release.yaml index e92a2b3..6903a3c 100644 --- a/.github/workflows/pypi-release.yaml +++ b/.github/workflows/pypi-release.yaml @@ -23,6 +23,9 @@ jobs: - name: Update version in setup.py run: >- sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" src/setup.py + - name: Include README in package + run: >- + cp README.md src/README.md - name: Build a binary wheel run: | cd src diff --git a/requirements.txt b/requirements.txt index ae5cd32..def1ed3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -lz4==3.1.10 +lz4>=3.1.10 # last version to support Python 3.6 diff --git a/src/MANIFEST.in b/src/MANIFEST.in index ea4b992..fd83249 100644 --- a/src/MANIFEST.in +++ b/src/MANIFEST.in @@ -1 +1,2 @@ -include README-PYPI.md +# copied from main README +include README.md diff --git a/src/README-PYPI.md b/src/README-PYPI.md deleted file mode 100644 index 0ed4bd4..0000000 --- a/src/README-PYPI.md +++ /dev/null @@ -1,63 +0,0 @@ -# Python SDK for SqliteCloud - -  - -SQLiteCloud is a powerful Python package that allows you to interact with the SQLite Cloud backend server seamlessly. It provides methods for various database operations. This package is designed to simplify database operations in Python applications, making it easier than ever to work with SQLite Cloud. - - -## Installation - -You can install SqliteCloud Package using Python Package Index (PYPI): - -```bash -$ pip install SqliteCloud -``` - -## Usage -