-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
69 lines (57 loc) · 1.36 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
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"
[project]
name = "hdfs-native"
description = "Python bindings for hdfs-native Rust library"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"typing-extensions",
"fsspec"
]
[project.optional-dependencies]
devel = [
"mypy~=1.13.0",
"pytest~=8.3",
"pytest-benchmark~=5.1",
"ruff~=0.7.2"
]
docs = [
"sphinx~=8.1",
"sphinx-automodapi~=0.18",
"sphinx-rtd-theme~=3.0"
]
[project.urls]
repository = "https://github.com/Kimahriman/hdfs-native"
documentation = "https://hdfs-native.readthedocs.io/"
[project.scripts]
hdfsn = "hdfs_native.cli:main"
[project.entry-points."fsspec.specs"]
hdfs = "hdfs_native.fsspec.HdfsFileSystem"
viewfs = "hdfs_native.fsspec.HdfsFileSystem"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "hdfs_native._internal"
[tool.mypy]
files = [
"hdfs_native/**/*.py",
"hdfs_native/**/*.pyi",
]
[[tool.mypy.overrides]]
module = "fsspec.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = [
"tests",
"hdfs_native",
]
addopts = "-m 'not benchmark'"
[tool.ruff.lint]
extend-select = ["I"]