-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
37 lines (33 loc) · 953 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]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core>=1" ]
[tool.poetry]
name = "manubot-ai-editor"
version = "0.5.2"
description = "A Manubot plugin to revise a manuscript using GPT-3"
authors = [ "Milton Pividori <[email protected]>" ]
maintainers = [
"Milton Pividori",
"Faisal Alquaddoomi",
"Vincent Rubinetti",
"Dave Bunten",
]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/manubot/manubot-ai-editor"
homepage = "https://github.com/manubot/manubot-ai-editor"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
packages = [ { include = "manubot_ai_editor", from = "libs" } ]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
langchain-core = "^0.3.6"
langchain-openai = "^0.2.0"
pyyaml = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.3"
[tool.setuptools_scm]
root = "."