-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (94 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
103 lines (94 loc) · 2.21 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "filestag"
version = "0.1.0"
description = "A fast and efficient file access library for local and cloud storage"
authors = [
{name = "Michael Ikemann", email = "michael.ikemann@gmail.com"}
]
readme = "README_PYPI.md"
license = "MIT"
requires-python = ">=3.12"
keywords = [
"file",
"storage",
"azure",
"blob",
"cloud",
"zip",
"archive",
"cache",
"async",
"io",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Filesystems",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0",
"requests>=2.28",
"aiofiles>=23.0",
"httpx>=0.24",
]
[project.urls]
Homepage = "https://github.com/scistag/filestag"
Repository = "https://github.com/scistag/filestag"
Documentation = "https://github.com/scistag/filestag#readme"
Issues = "https://github.com/scistag/filestag/issues"
[project.optional-dependencies]
azure = [
"azure-storage-blob>=12.0",
"aiohttp>=3.8",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.0",
"pytest-asyncio>=0.21",
"mypy>=1.0",
"ruff>=0.1",
"python-dotenv>=1.0",
]
all = [
"azure-storage-blob>=12.0",
"aiohttp>=3.8",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4"
pytest-cov = ">=4.0"
pytest-asyncio = ">=0.21"
mypy = ">=1.0"
ruff = ">=0.1"
python-dotenv = ">=1.0"
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.mypy]
python_version = "3.12"
strict = false
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
source = ["filestag"]
omit = ["filestag/azure/*"]
[tool.coverage.report]
fail_under = 90
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
]