-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.54 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
[tool.black]
line-length = 100
[tool.ruff]
line-length = 130
ignore = ["E402"] # top of file imports
[tool.ruff.per-file-ignores]
"*/tests/*" = ["E722"] # bare `except`
"intake/util_tests.py" = ["E722"] # bare `except`
"__init__.py" = ["F401"] # imported but unused
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "intake"
dynamic = ["version"]
description = "Data catalog, search and load"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Martin Durant", email = "[email protected]"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
]
dependencies = [
"fsspec >=2023.0.0",
"pyyaml",
"platformdirs",
"networkx"
]
[tool.setuptools_scm]
version_file = "intake/_version.py"
[tool.setuptools]
include-package-data = false
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["*tests*", "dist", "*examples*", "*scripts*", "*docs*"]
namespaces = false
[flake8]
exclude = "__init__.py"
ignore = "E,W"
select = "F,E101,E111,E501"
max-line-length = 100
[project.entry-points."intake.drivers"]
csv = "intake.source.csv:CSVSource"
jsonfiles = "intake.source.jsonfiles:JSONFileSource"
numpy = "intake.source.npy:NPySource"
tiled_cat = "intake.source.tiled:TiledCatalog"
textfiles = "intake.source.textfiles:TextFilesSource"
ndzarr = "intake.source.zarr:ZarrArraySource"