-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (29 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (29 loc) · 916 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlcli-plus"
version = "0.0.1"
authors = [
{ name="Sanfelici Matteo", email="sanfelicimatteo@gmail.com" },
]
description = "A python wrapper around the SQL Cli for a more command-line friendly interaction (with custom post execution action for managing complex project with many schemas)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"pyyaml"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = " GPL-3.0-only"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/sanfo3855/sqlcli-plus"
Issues = "https://github.com/sanfo3855/sqlcli-plus/issues"
[project.scripts]
# TODO understand how to spam cli correctly
cli-name = "sqlcli_plus:main"
[tool.hatch.build.targets.wheel]
packages = ["src/sqlcli_plus"]