-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (76 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
87 lines (76 loc) · 2.1 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
[build-system]
requires = ["setuptools>=69.0", "wheel", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "filelayer"
dynamic = ["version"]
description = "Simple file access abstraction over local filesystem and S3-compatible storage."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Sireto" }
]
keywords = ["storage", "s3", "wasabi", "filesystem", "abstraction", "boto3"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
]
dependencies = [
"boto3>=1.34,<2.0",
"pydantic>=2.7,<3.0",
"pydantic-settings>=2.2,<3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
"ruff>=0.4,<1.0",
"mypy>=1.10,<2.0",
"pre-commit>=3.7,<4.0",
"boto3-stubs[s3]>=1.34,<2.0",
]
[project.urls]
Homepage = "https://github.com/sireto/filelayer"
Repository = "https://github.com/sireto/filelayer"
Issues = "https://github.com/sireto/filelayer/issues"
Changelog = "https://github.com/sireto/filelayer/blob/main/CHANGELOG.md"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = ["boto3.*", "botocore.*"]
ignore_missing_imports = true
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]