generated from OHNLP/nlp_project_template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.24 KB
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
[build-system]
requires = ["setuptools>=62.0", "wheel>=0.37"]
build-backend = "setuptools.build_meta"
[project]
name = "mederror"
version = "0.0.1"
description = "A project for medical error detection and analysis"
authors = [
{ name = "Jaerong Ahn", email = "jaerong.ahn@uth.tmc.edu" },
{ name = "Sunyang Fu", email = "sunyang.fu@uth.tmc.edu" },
{ name = "Qiuhao Lu", email = "qiuhao.lu@uth.tmc.edu" },
{ name = "Fang Chen", email = "fang.chen@uth.tmc.edu" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dependencies = [
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"openai>=1.0.0",
"tqdm>=4.65.0",
"transformers>=4.30.0",
"vllm>=0.2.0",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8",
"pre-commit",
]
all = [
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"python-dotenv>=1.0.0",
"ipykernel>=6.25.0",
"pyodbc>=5.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py310"]
color = false
include = '^src/.*\.py$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.isort]
profile = "black"