-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
102 lines (91 loc) · 2.1 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "marimo_labs"
description = "Cutting-edge experimental features for marimo"
version = "0.1.0"
dependencies = [
"marimo>=0.3.8",
"huggingface_hub>=0.19.3",
"requests>=2.0",
"pyyaml>=5.0",
"Pillow>=7.0",
"numpy>=1.21.0",
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"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 :: Only",
]
[project.urls]
homepage = "https://github.com/marimo-team/marimo_labs"
[project.optional-dependencies]
dev = [
"black~=23.3.0",
"build~=0.10.0",
"mypy~=1.9.0",
"ruff~=0.3.5",
"typos~=1.20.4",
"pytest~=8.1.1",
]
[tool.setuptools.packages.find]
# project source is entirely contained in the `marimo` package
include = ["marimo_labs*"]
[tool.ruff]
line-length=79
exclude = [
"docs",
"build",
]
lint.ignore = []
lint.select = [
# pyflakes
"F",
# pycodestyle
"E",
# warning
"W",
# flake8 builtin-variable-shadowing
"A001",
# flake8 builtin-argument-shadowing
"A002",
# flake8-unused-arguments
"ARG",
# flake8-bugbear
"B",
# future annotations
"FA102",
# isort
"I001",
]
# Never try to fix `F401` (unused imports).
lint.unfixable = ["F401"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
[tool.black]
line-length = 79
[tool.mypy]
strict = false
exclude = []
warn_unused_ignores=false
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[tool.typos.default.extend-words]
wheres = "wheres"