-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·58 lines (50 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·58 lines (50 loc) · 1.31 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
54
55
56
57
58
[project]
name = "convert-database-tool"
version = "0.2.3"
description = "A simple tool to make updates to a database."
readme = "README.md"
authors = [
{ name = "Antony", email = "antonygradillas@gmail.com" }
]
maintainers = [
{name = "Antony", email = "antonygradillas@gmail.com"}
]
requires-python = ">=3.12"
dependencies = [
"mariadb>=1.1.14",
"tomlkit>=0.13.3",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["mariadb", "automation", "sql"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/avgra3/convert-database"
Repository = "https://github.com/avgra3/convert-database"
Issues = "https://github.com/avgra3/convert-database/issues"
[project.scripts]
convert-database-tool = "convert_database_tool.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
convert-database-tool = [
"SCRIPTS/*.sql",
"configs/dbConfig.toml",
]
[tool.ruff]
line-length = 80
[tool.ruff.lint]
extend-select = ["E501"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.14.6",
]