-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.58 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "semantic-llama"
version = "0.0.0"
description = "Semantic LLAMA"
authors = ["Chris Mungall <cjmungall@lbl.gov>"]
license = "BSD-3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
setuptools = "^65.5.0"
tox = "^3.25.1"
click = "^8.1.3"
importlib = "^1.0.4"
sphinx = {version = "^5.3.0", extras = ["docs"]}
sphinx-rtd-theme = {version = "^1.0.0", extras = ["docs"]}
sphinx-autodoc-typehints = {version = "^1.19.4", extras = ["docs"]}
sphinx-click = {version = "^4.3.0", extras = ["docs"]}
myst-parser = {version = "^0.18.1", extras = ["docs"]}
openai = "^0.25.0"
oaklib = "^0.1.64"
gilda = "^0.10.3"
jsonlines = "^3.1.0"
fastapi = "^0.88.0"
uvicorn = "^0.20.0"
Jinja2 = "^3.1.2"
python-multipart = "^0.0.5"
mkdocs-mermaid2-plugin = "^0.6.0"
linkml-owl = "^0.2.4"
beautifulsoup4 = "^4.11.1"
eutils = "^0.6.0"
class-resolver = "^0.3.10"
inflect = "^6.0.2"
bioc = "^2.0.post5"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
[tool.poetry.scripts]
semllama = "semantic_llama.cli:main"
webllama = "semantic_llama.webapp.main:start"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"sphinx-click",
"myst-parser"
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
include_trailing_comma = true
reverse_relative = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"