-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.29 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
[project]
name = "dac"
dynamic = ["version"]
description = "Tool to distribute data as code"
readme = "README.md"
requires-python = ">=3.9,<3.14"
license = { text = "MIT" }
authors = [
{ name = "Francesco Calcavecchia", email = "[email protected]" },
]
maintainers = [
{ name = "Francesco Calcavecchia", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
]
dependencies = [
"build~=1.2",
"toml~=0.10.2",
"typer~=0.15.2",
"wheel~=0.45",
]
# [project.optional-dependencies]
#
[project.urls]
homepage = "https://data-as-code.github.io/dac/"
documentation = "https://data-as-code.github.io/dac/"
repository = "https://github.com/data-as-code/dac"
changelog = "https://github.com/data-as-code/dac/blob/main/CHANGELOG.md"
[project.scripts]
dac = "dac._cli:app"
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120