Skip to content

Commit

Permalink
Poetryに移行
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuuji committed Jan 2, 2023
1 parent 7ebb563 commit 159a89f
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 53 deletions.
13 changes: 0 additions & 13 deletions Pipfile

This file was deleted.

37 changes: 0 additions & 37 deletions Pipfile.lock

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jlaselect [![](https://img.shields.io/badge/python-3.7+-blue.svg)](https://docs.python.org/3.7/) [![Maintainability](https://api.codeclimate.com/v1/badges/65ec5ac5f1152c705347/maintainability)](https://codeclimate.com/github/CALIL/jlaselect/maintainability)
jlaselect [![](https://img.shields.io/badge/python-3.11+-blue.svg)](https://docs.python.org/3.11/) [![Maintainability](https://api.codeclimate.com/v1/badges/65ec5ac5f1152c705347/maintainability)](https://codeclimate.com/github/CALIL/jlaselect/maintainability)
=============================================================
日本図書館協会選定図書総目録CD-ROMのデータ変換ツール

Expand All @@ -11,7 +11,7 @@ jlaselect [![](https://img.shields.io/badge/python-3.7+-blue.svg)](https://docs.
依存パッケージのインストール
----
```json
pipenv install
poetry install
```

コマンドライン
Expand All @@ -21,7 +21,7 @@ pipenv install
- 複数ファイルをまとめて処理する場合は、プログラムを直接修正する

```bash
pipenv run python jlaselect.py > jlaselect.jsonl
poetry run python jlaselect.py > jlaselect.jsonl
```

サンプルデータ
Expand Down
45 changes: 45 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[tool.poetry]
name = "jlaselect"
version = "0.1.0"
description = ""
authors = ["Ryuuji Yoshimoto <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10"
click = "*"
isbnlib = "*"


[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 159a89f

Please sign in to comment.