generated from alvarobartt/python-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.51 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wandbfsspec"
version = "0.2.0"
packages = [{ include = "wandbfsspec", from = "src" }]
description = "fsspec interface for Weights & Biases (wandb)"
authors = ["Alvaro Bartolome <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/alvarobartt/wandbfsspec"
documentation = "https://github.com/alvarobartt/wandbfsspec"
repository = "https://github.com/alvarobartt/wandbfsspec"
license = "MIT License"
[tool.poetry.plugins."fsspec.specs"]
wandbfs = "wandbfsspec.spec.WandbFileSystem"
wandbas = "wandbfsspec.spec.WandbArtifactStore"
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
fsspec = "^2022.5.0"
wandb = "~0.13.3"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "^0.931"
pre-commit = "^2.17.0"
pytest = "^7.1.2"
pydantic = "^1.9.1"
[tool.isort]
profile = "black"
[tool.mypy]
# --strict
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
implicit_reexport = false
strict_equality = true
# --strict end
[[tool.mypy.overrides]]
module = ["fsspec.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(levelname)s: %(message)s"