-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.37 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cshelve"
version = "0.9.0"
description = "Propulsing the shelve module to the cloud"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
keywords = ["shelve", "database", "azure-storage-account", "azure", "cloud"]
[tool.setuptools]
packages = ["cshelve"]
[project.urls]
repository = "https://github.com/Standard-Cloud/cshelve"
homepage = "https://github.com/Standard-Cloud/cshelve"
documentation = "https://github.com/Standard-Cloud/cshelve"
[tool.uv]
dev-dependencies = [
"azure-identity>=1.19.0",
"azure-storage-blob>=12.23.1",
"furo>=2024.8.6",
"pandas>=1.4",
"pre-commit>=4.0.1",
"pytest-cov>=6.0.0",
"pytest-xdist>=3.6.1",
"pytest>=8.3.3",
"ruff>=0.6.9",
"sphinx-autobuild>=2024.10.3",
"sphinx>=7.4.7",
"pycryptodome>=3.21.0",
]
[tool.uv.sources]
bird-feeder = { path = "./cshelve" }
[tool.pytest.ini_options]
pythonpath = ["."]
markers = [
"sequential: marks tests that can only run in sequential (deselect with '-m \"not sequential\"')",
"azure: marks tests that can only run with an Azure connection (deselect with '-m \"not azure\"')",
]
addopts = "--doctest-modules"
[project.optional-dependencies]
azure-blob = [
"azure-identity>=1.19.0",
"azure-storage-blob>=12.23.1",
]
encryption = [
"pycryptodome>=3.21.0",
]