-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 857 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "json2sql"
version = "0.1.0"
description = "Convert JSON files/datasets to SQL INSERT statements"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{name = "Revenue Holdings"}]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
"revenueholdings-license>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/Coding-Dev-Tools/json2sql"
Repository = "https://github.com/Coding-Dev-Tools/json2sql"
Documentation = "https://github.com/Coding-Dev-Tools/json2sql#readme"
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/json2sql/issues"
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov"]
[project.scripts]
json2sql = "json2sql.cli:app"
[tool.setuptools.packages.find]
where = ["src"]