-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.48 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
[build-system]
requires = ["setuptools>=62.6", "versioneer[toml]==0.28"]
build-backend = "setuptools.build_meta"
[project]
name = "pandas-expr"
description = "Lazy pandas API"
maintainers = [{name = "Patrick Hoefler", email = "[email protected]"}]
license = {text = "BSD"}
keywords = ["pandas"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"dask >= 2023.07",
"pyarrow",
"pandas >= 2",
]
dynamic = ["version"]
[project.urls]
"Source code" = "https://github.com/phofl/pandas-expr/"
[tool.setuptools.packages.find]
exclude = ["*tests*"]
namespaces = false
[tool.coverage.run]
omit = [
"*/test_*.py",
]
source = ["pandas_expr"]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
"pragma: no cover",
"raise AssertionError",
"raise NotImplementedError",
]
ignore_errors = true
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pandas_expr/_version.py"
versionfile_build = "pandas_expr/_version.py"
tag_prefix = "v"
parentdir_prefix = "pandas-"