-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (31 loc) · 930 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "phronesitron"
authors = ["Reto Stamm"]
description = "Interact with ML language models from the commandline"
readme = "README.md"
version = "0.1.8"
keywords = ["openai", "literature"]
license = "GPL-3"
classifiers = [ "Programming Language :: Python :: 3", ]
homepage="https://github.com/retospect/phronesitron"
[tool.poetry.dependencies]
openai = "*"
argparse = "*"
pyperclip = "*"
termcolor = "*"
paper2txt = "*"
[tool.poetry.scripts]
ph = "phronesitron.executables:ph_main"
[tool.bumpver]
current_version = "0.1.8"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/phronesitron/__init__.py" = ["{version}"]