-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.34 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
[build-system]
requires = ["setuptools>=70.1", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "xdlake"
description = "A loose implimentation of the deltalake spec focused on extensibility and distributed data."
authors = [
{ name = "Brian Hannafious", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["deltalake", "parquet"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/xbrianh/xdlake"
Repository = "https://github.com/xbrianh/xdlake.git"
Issues = "https://github.com/xbrianh/xdlake/issues"
# Documentation = "https://readthedocs.org"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["xdlake"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
version_file = "xdlake/__version__.py"
[tool.poetry]
# Other configuration options...
readme = "README.md"
[tool.mypy]
disable_error_code = ["misc"]