-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.25 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "webhdfsmagic"
version = "0.0.6"
description = "IPython magic commands to interact with HDFS via WebHDFS/Knox"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "ab2dridi ", email = "a-d13@hotmail.fr" }
]
dependencies = [
"requests>=2.20.0",
"pandas>=1.0.0",
"traitlets>=4.3.0",
"ipython>=7.0.0",
"jupyter_core>=4.0.0",
"tabulate>=0.9.0",
"pyarrow>=10.0.0",
"polars>=1.0.0"
]
classifiers = [
"Programming Language :: Python :: 3"
]
[project.optional-dependencies]
dev = [
"pytest>=5.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0"
]
[project.scripts]
jupyter-webhdfsmagic = "webhdfsmagic.install:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["webhdfsmagic*"]
[tool.setuptools.package-data]
webhdfsmagic = ["etc/*"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"