-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 1.83 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "browserstate"
version = "0.0.2"
authors = [
{ name="BrowserState Team", email="info@browserstate.dev" },
]
description = "Manage browser profiles across cloud storage providers"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# No runtime dependencies required for core functionality
]
license = "MIT"
license-files = ["LICENSE*"]
[project.optional-dependencies]
# Development dependencies that are not needed for runtime
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.23.0",
"flake8>=6.0.0",
"moto>=5.0.0", # AWS mocking for tests
"ruff>=0.3.0", # Formatting and linting
]
# Optional storage backend dependencies
redis = [
"redis>=4.5.0",
]
s3 = [
"boto3>=1.26.0",
]
gcs = [
"google-cloud-storage>=2.7.0",
]
# Convenience groups
all = [
"redis>=4.5.0",
"boto3>=1.26.0",
"google-cloud-storage>=2.7.0",
]
[project.urls]
Homepage = "https://browserstate.io"
Documentation = "https://browserstate.io"
Repository = "https://github.com/browserstate-org/browserstate"
Issues = "https://github.com/browserstate-org/browserstate/issues"
"GitHub Packages" = "https://github.com/browserstate-org/browserstate/packages"
[tool.hatch.build.targets.wheel]
packages = ["browserstate"]
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"browserstate/**/*.py",
]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "I"] # Enable pycodestyle ('E'), pyflakes ('F'), and isort ('I') rules
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"