Skip to content

Commit 5289a8a

Browse files
committed
added pyproject.toml
1 parent 157548d commit 5289a8a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[build-system]
2+
3+
requires = ["setuptools>=61.0"]
4+
build-backend = "setuptools.build_meta"
5+
6+
[project]
7+
dependencies = [
8+
"scikit-learn>=1.1.0",
9+
"pandas>=1.5.0",
10+
"openai>=0.27.0",
11+
"tqdm>=4.60.0",
12+
]
13+
name = "scikit-llm"
14+
version = "0.1.0b1"
15+
authors = [
16+
{ name="Oleg Kostromin", email="[email protected]" },
17+
{ name="Iryna Kondrashchenko", email="[email protected]" },
18+
]
19+
description = "Scikit-LLM: Seamlessly integrate powerful language models like ChatGPT into scikit-learn for enhanced text analysis tasks."
20+
readme = "README.md"
21+
license = {text = "MIT"}
22+
requires-python = ">=3.8"
23+
classifiers = [
24+
"Programming Language :: Python :: 3",
25+
"License :: OSI Approved :: MIT License",
26+
"Operating System :: OS Independent",
27+
]
28+
[tool.pytest.ini_options]
29+
pythonpath = [
30+
"."
31+
]

0 commit comments

Comments
 (0)