-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
99 lines (88 loc) · 1.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "llm-regression"
version = "0.1.0.dev0"
description = "The llm-regression Python package."
readme = "README.md"
authors = [
{ name="Alex Ioannides", email="[email protected]" },
]
dependencies = [
"openai==1.30.*",
"numpy==1.26.*",
"pandas==2.2.*",
"python-dotenv==1.0.*",
"scikit-learn==1.4.*",
"tqdm==4.66.*",
]
[project.optional-dependencies]
examples = [
"pandas==2.2.2",
"scikit-learn==1.4.2",
"seaborn==0.13.2",
]
dev = [
"black==23.9.1",
"python-dotenv>=1.0.0",
"icecream",
"ipython",
"mypy==1.5.1",
"nox==2023.4.22",
"pandas-stubs==2.2.2.240514",
"pytest==7.4.2",
"ruff==0.0.290",
"types-pytz==2024.1.0.20240417",
"types-tqdm==4.66.0.20240417",
]
deploy = [
"build>=1.0.0",
"pip>=23.2.0",
"setuptools>=68.0.0",
"twine>=4.0.0",
"wheel>=0.41.0",
]
[project.urls]
"Homepage" = "https://github.com/AlexIoannides/llm-regression"
"Bug Tracker" = "https://github.com/AlexIoannides/llm-regression/issues"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
[tool.ruff]
src = ["src"]
target-version = "py310"
line-length = 88
select = [
"D", # pydocstyle
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warnings
]
ignore = [
"D203", # fix pydocstyle warning
"D213", # fix pydocstyle warning
]
[tool.ruff.per-file-ignores]
"tests/*" = [
"D103",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.12"
files = [
"src",
"tests",
"noxfile.py",
]
[[tool.mypy.overrides]]
module = [
"sklearn.*",
]
ignore_missing_imports = true