forked from Quantco/polarify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (68 loc) Β· 1.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "polarify"
description = "Simplifying conditional Polars Expressions with Python π π»ββοΈ"
version = "0.2.0"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{ name = "Bela Stoyan", email = "[email protected]" },
{ name = "Pavel Zwerschke", email = "[email protected]" },
]
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",
]
dependencies = [
"polars >=0.14.24,<0.21",
]
[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"