Browse Source

Update pypi workflow

pull/1827/head
Hironsan 2 years ago
parent
commit
f52b89d0c1
2 changed files with 11 additions and 11 deletions
  1. 4
      .github/workflows/pypi-publish.yml
  2. 18
      backend/pyproject.toml

4
.github/workflows/pypi-publish.yml

@ -43,11 +43,11 @@ jobs:
working-directory: ./backend working-directory: ./backend
- name: Build a binary wheel and a source tarball - name: Build a binary wheel and a source tarball
run: | run: |
sed -e "s/, from = \"..\"//g" backend/pyproject.toml > pyproject.toml
poetry build poetry build
working-directory: ./backend
- name: Publish a Python distribution to PyPI - name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master uses: pypa/gh-action-pypi-publish@master
with: with:
user: ${{ secrets.PYPI_USERNAME }} user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }} password: ${{ secrets.PYPI_PASSWORD }}
packages_dir: ./backend/dist/
packages_dir: ./dist/

18
backend/pyproject.toml

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "doccano" name = "doccano"
version = "0.0.0"
version = "1.7.0"
description = "doccano, text annotation tool for machine learning practitioners" description = "doccano, text annotation tool for machine learning practitioners"
authors = ["Hironsan <hiroki.nakayama.py@gmail.com>"] authors = ["Hironsan <hiroki.nakayama.py@gmail.com>"]
license = "MIT" license = "MIT"
@ -16,14 +16,14 @@ packages = [
{ include = "backend", from = ".." }, { include = "backend", from = ".." },
] ]
include = [ include = [
"client/dist/**/*",
"staticfiles/**/*"
"backend/client/dist/**/*",
"backend/staticfiles/**/*"
] ]
exclude = [ exclude = [
"filepond-temp-uploads",
"media",
"db.sqlite3*",
"poetry.lock"
"backend/filepond-temp-uploads",
"backend/media",
"backend/db.sqlite3*",
"backend/poetry.lock"
] ]
[tool.poetry.extras] [tool.poetry.extras]
@ -82,11 +82,11 @@ taskipy = "^1.10.1"
unittest-xml-reporting = "^3.2.0" unittest-xml-reporting = "^3.2.0"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning] [tool.poetry-dynamic-versioning]
enable = true
enable = false
[tool.black] [tool.black]
line-length = 120 line-length = 120

Loading…
Cancel
Save