-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (77 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
88 lines (77 loc) · 2.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "laygo/__init__.py"
[project]
name = "laygo"
version = "0.1.0"
description = "A lightweight Python library for building resilient, in-memory data pipelines with elegant, chainable syntax"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Ringolds Lescinskis", email = "ringolds@lescinskis.com"},
]
keywords = ["pipeline", "data-processing", "etl", "functional", "chaining"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"requests>=2.32",
"loky>=3.5.5",
]
[project.urls]
Homepage = "https://github.com/ringoldsdev/laygo-python"
Documentation = "https://github.com/ringoldsdev/laygo-python/wiki"
Repository = "https://github.com/ringoldsdev/laygo-python.git"
Issues = "https://github.com/ringoldsdev/laygo-python/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
"twine>=4.0.0",
"requests-mock>=1.12.1",
"py-spy>=0.4.1"
]
[tool.ruff]
line-length = 120
target-version = "py312"
indent-width = 2
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = true
known-first-party = ["laygo"]
combine-as-imports = false
force-sort-within-sections = true
case-sensitive = false
split-on-trailing-comma = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "-v"