-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) Β· 1.38 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) Β· 1.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "polarify"
description = "Simplifying conditional Polars Expressions with Python π π»ββοΈ"
version = "0.2.1"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Bela Stoyan", email = "bela.stoyan@quantco.com" },
{ name = "Pavel Zwerschke", email = "pavel.zwerschke@quantco.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["polars >=0.14.24,<2"]
[project.urls]
Homepage = "https://github.com/quantco/polarify"
[tool.hatch.build.targets.sdist]
include = ["/polarify"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# flake8-builtins
"A",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# pylint
"PL",
# tidy
"TID",
# isort
"I",
# pep8-naming
"N",
# pyupgrade
"UP",
]
ignore = [
# may cause conflicts with ruff formatter
"E501",
"W191",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"