generated from NHSDigital/rap-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.01 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
[project]
name = "ds_251_RAG"
version = "0.1.0"
authors = [
{ name="Data Science Skilled team", email="[email protected]" },
{name = "Sam Hollings", email = "[email protected]"},
]
readme = "README.md"
requires-python = "==3.11.*"
description = "Default template for PDM package"
dependencies = [
"langchain",
"jupyter",
"pandas",
"sqlalchemy",
"pytest",
"pytest-html",
"toml",
"python-dotenv",
"tdqm",
"sentence-transformers",
"chromadb",
"anthropic",
"requests>=2.31.0",
"scrapy>=2.11.0",
"beautifulsoup4>=4.12.3",
"jsonlines>=4.0.0",
"scrape-nhs-conditions>=1.0.4",
]
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://nhsdigital.github.io/rap-community-of-practice/"
[tool.pdm]
distribution = false
[tool.pytest.ini_options]
addopts = [
"-v",
"--doctest-modules",
"--doctest-report=cdiff",
"--doctest-continue-on-failure"
]
doctest_optionflags = "NORMALIZE_WHITESPACE"
testpaths = [
"tests"
]