-
Notifications
You must be signed in to change notification settings - Fork 1
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
36fbcad
commit 0647720
Showing
6 changed files
with
322 additions
and
2 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 |
---|---|---|
|
@@ -89,3 +89,4 @@ ENV/ | |
.ropeproject | ||
|
||
log | ||
.venv |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PYTHON = python3 | ||
VENV = venv | ||
VENV = .venv | ||
ACTIVATE = . ./${VENV}/bin/activate | ||
|
||
TARGET = testpypi | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,11 @@ | ||
更新履歴 | ||
======================== | ||
|
||
* v1.2.2 | ||
|
||
- オプションパーサーにClickを利用 | ||
- pyproject.tomlを利用 | ||
|
||
* v1.2.1 | ||
|
||
- Akerunデータのヘッダーが日本語になったのでそれに合わせて修正 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,40 @@ | ||
[tool.poetry] | ||
name = "akerun-sum" | ||
version = "1.2.2" | ||
description = "Enter and leave data totalization program for Akerun" | ||
license = "GPL-3.0-or-later" | ||
authors = ["KAWAI Shun <[email protected]>"] | ||
maintainers = ["KAWAI Shun <[email protected]>"] | ||
readme = "README.md" | ||
homepage = "https://github.com/osstech-jp/akerun-sum" | ||
repository = "https://github.com/osstech-jp/akerun-sum" | ||
keywords = ["akerun", "akerun-sum"] | ||
classifiers = [ | ||
"Environment :: Console", | ||
"Natural Language :: Japanese", | ||
"Operating System :: Microsoft :: Windows :: Windows 7", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: GNU General Public License (GPL)" | ||
] | ||
packages = [ | ||
{ include = "akerun_sum" } | ||
] | ||
include = [ | ||
"LICENSE", | ||
"changelog.rst" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.5" | ||
click = ">=7.1" | ||
|
||
[tool.poetry.scripts] | ||
akerun-sum = "akerun_sum.cli:main" | ||
|
||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" |