-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (81 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
90 lines (81 loc) · 1.97 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
[build-system]
requires = ["hatchling>=1.14.1"]
build-backend = "hatchling.build"
[project]
name = "py_s3_storacha"
dynamic = ["version"]
authors = [
{ name="Emmanuel Akanji", email="[email protected]" },
{ name="Emmanuel Appah", email="[email protected]" },
{ name="Collins Abegunde", email="[email protected]" },
]
description = "A tool for migrating objects from AWS S3 to Storacha"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE.md"]
dependencies = [
"httpx",
"aioboto3"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"python-dotenv",
"boto3",
"ruff",
"pyright"
]
[project.urls]
Homepage = "https://github.com/Mahd-Mehn/MM-python-s3-storacha"
Issues = "https://github.com/Mahd-Mehn/MM-python-s3-storacha/issues"
[project.scripts]
py-s3-storacha = "py_s3_storacha.cli:main"
py-s3-storacha-setup = "py_s3_storacha.setup_helpers:main"
py-s3-storacha-auth = "py_s3_storacha.auth_helper:main"
[tool.hatch.version]
path = "src/py_s3_storacha/__init__.py"
[tool.hatch.build]
packages = ["src/py_s3_storacha"]
include = [
"src/py_s3_storacha/py.typed",
"src/py_s3_storacha/js/**/*"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--strict-config",
"-ra",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests",
]
[tool.coverage.run]
source = ["src/py_s3_storacha"]
omit = [
"*/tests/*",
"*/test_*.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]