-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 909 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "oai_dataset_processor"
version = "0.1.1"
description = "A sample dataset processor for evaluating datasets."
authors = [{name = "Ben Gitter", email = "gitterbd@gmail.com"}]
dependencies = [
"openai>=1.57.0",
"tqdm>=4.65.0",
"pandas>=2.0.0",
"sqlalchemy>=2.0.0",
"pydantic>=2.10.0",
]
readme = "README.md"
requires-python = ">=3.12"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = [
"mypy",
"ruff",
]
[project.urls]
"Homepage" = "https://github.com/gittb/oai_dataset_processor"
"Bug Tracker" = "https://github.com/gittb/oai_dataset_processor/issues"