-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.28 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
[project]
name = "skimpy"
version = "0.0.18"
description = "skimpy"
authors = [{name="Arthur Turrell", email="[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
dependencies = [
"click>=8.1.7",
"ipykernel>=6.29.5",
"numpy>=2.0.2",
"pandas-stubs>=2.2.2.240807",
"pandas>=2.2.3",
"polars>=1.17.1",
"pygments>=2.18.0",
"rich>=13.9.4",
"typeguard>=4.4.1",
"pyarrow>=17.0.0",
]
[dependency-groups]
dev = [
"autopep8>=2.3.1",
"coverage[toml]>=7.6.9",
"jupyter>=1.1.1",
"matplotlib>=3.9.4",
"mypy>=1.13.0",
"nbstripout>=0.8.1",
"nox>=2024.10.9",
"pre-commit>=4.0.1",
"pre-commit-hooks>=5.0.0",
"pygments>=2.18.0",
"pytest>=8.3.4",
"quartodoc>=0.9.1",
"ruff>=0.8.3",
"toml>=0.10.2",
"typing-extensions>=4.12.2",
"xdoctest[colors]>=1.2.0",
]
[tool.mypy]
strict = false
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
ignore_missing_imports = true
disallow_untyped_calls = false