-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (65 loc) · 1.75 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
[build-system]
requires = ["setuptools>=69.5.1", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "bokeh_sampledata"
dynamic = ["version"]
description = "Sample datasets for Bokeh examples"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"icalendar",
"pandas >=1.2",
]
authors = [
{email = "[email protected]"},
{name = "Bokeh Team"}
]
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
homepage = "https://bokeh.org"
documentation = "https://docs.bokeh.org"
repository = "https://github.com/bokeh/bokeh_sampledata"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"bokeh_sampledata._data" = ["**"]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}+{ccount}.g{sha}"
dirty_template = "{tag}+{ccount}.g{sha}.dirty"
[tool.isort]
force_grid_wrap = 4
line_length = 100
multi_line_output = 3
combine_as_imports = true
indented_import_headings = false
include_trailing_comma = true
[tool.mypy]
python_version = "3.10"
files = ["src", "tests"]
strict = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
disallow_any_unimported = true
implicit_reexport = true
namespace_packages = true
warn_return_any = false
warn_unreachable = true
[tool.ruff]
line-length = 120
lint.select = ["B", "COM", "E", "F", "RUF", "TID", "UP", "W"]
lint.ignore = ["COM812"]
target-version = "py310"