-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (51 loc) · 1.26 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
[project]
name = "checkedframe"
version = "0.1.0"
description = "A generic dataframe validation library"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Cangyuan Li", email = "everest229@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = ["narwhals>=1.0.0"]
[project.optional-dependencies]
pyperclip = ["pyperclip>=1.0.0"]
[dependency-groups]
typing = ["typing_extensions"]
docs = [
"ghp-import==2.1.0",
"pydata-sphinx-theme==0.16.1",
"sphinx==8.2.3",
"sphinx-autobuild==2024.10.3",
"sphinx-copybutton==0.5.2",
"sphinx-multiversion==0.2.4",
"sphinx-tabs==3.4.7",
"myst-parser==4.0.1",
]
tests = ["pytest", "polars", "pandas", "pyarrow", "modin"]
dev = [
"ruff",
"mypy",
"ipykernel",
"build",
"twine",
{ include-group = "docs" },
{ include-group = "typing" },
{ include-group = "tests" },
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.isort]
profile = "black"
[tool.mypy]
plugins = ["checkedframe.mypy"]
allow_redefinition = true
[tool.ruff]
ignore = ["E741"]
[tool.ruff.format]
docstring-code-format = true