-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
64 lines (56 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dataformer"
version = "0.0.2"
description = "Dataformer is a library to create data for LLMs."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
keywords = ["llm", "synthetic", "data"]
authors = [{ name = "Dataformer AI", email = "[email protected]" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"pydantic >= 2.0",
"tiktoken",
"aiohttp",
"python-dotenv",
"pytest"
]
[project.optional-dependencies]
dev = ["ruff == 0.4.5", "pre-commit >= 3.5.0", "black == 24.4.2"]
tests = [
"pytest >= 7.4.0",
"pytest-asyncio",
"nest-asyncio",
"pytest-timeout",
"pytest-codspeed",
]
openai = ["openai >= 1.0.0"]
[tool.setuptools]
package-dir = {"" = "src"}
[project.urls]
Documentation = "https://dataformer.ai/"
Issues = "https://github.com/DataformerAI/dataformer/issues"
Source = "https://github.com/DataformerAI/dataformer"
[tool.hatch.version]
path = "src/dataformer/__init__.py"
[tool.ruff]
line-length = 88
exclude = ["docs"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "C", "B"]
ignore = ["E501", "B905", "B008"]
[tool.pytest.ini_options]
testpaths = ["tests"]