File size: 1,151 Bytes
5ff9411
 
e502c13
d7027f5
5ff9411
 
 
 
 
e964313
5ff9411
6ee0d16
c1d7a3e
bf71d0e
b8cdad9
e964313
 
 
5ff9411
 
c0a740e
 
 
6ee0d16
 
 
 
 
 
8a3e357
a707261
6ee0d16
 
 
 
 
8a3e357
6ee0d16
803d9c7
6ee0d16
8a3e357
5ff9411
c1d7a3e
8bb1e58
c1d7a3e
5ff9411
 
 
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
[project]
name = "my-ghost-writer"
version = "0.7.2"
description = "A simple webapp supporting writers"
authors = [
    {name = "alessandro trinca tornidor",email = "[email protected]"}
]
license = {text = "AGPL-3.0"}
readme = "README.md"
requires-python = ">=3.10,<3.14.0"
dependencies = [
    "nltk (>=3.9.1,<4.0.0)",
    "python-dotenv (>=1.1.0,<2.0.0)",
    "structlog (>=25.2.0,<26.0.0)",
    "uvicorn (==0.34.3)",
    "pymongo (==4.13.2)",
    "spacy (>=3.8.7,<4.0.0)",
    "pyinflect (>=0.5.1,<0.6.0)"
]

[tool.poetry]
package-mode = false

[tool.poetry.group.test]
optional = true

[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
httpx = "^0.28.1"
jsonpath-ng = "^1.7.0"

[tool.poetry.group.webserver]
optional = true

[tool.poetry.group.webserver.dependencies]
asgi-correlation-id = "^4.3.4"
fastapi = "^0.115.12"
requests = ">=2.32.4,<3.0.0"
uvicorn = "^0.34.2"
pymongo = {extras = ["srv"], version = "^4.13.2"}

[tool.pytest.ini_options]
addopts = "--cov=my_ghost_writer --cov-report=term-missing"

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"