Skip to content

Commit 75606d9

Browse files
committed
Move to main package
1 parent bb487cf commit 75606d9

19 files changed

+684
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ repos:
2929
rev: v2.1.0
3030
hooks:
3131
- id: codespell
32+
args: [--exclude-file, uv.lock]
3233

3334
- repo: https://github.com/psf/black-pre-commit-mirror
3435
rev: 23.12.1

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[project]
2+
name = "dstoolkit-text2sql-and-imageprocessing"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = [
8+
]
9+
10+
[dependency-groups]
11+
dev = [
12+
"black>=24.10.0",
13+
"ipykernel>=6.29.5",
14+
"pre-commit>=4.0.1",
15+
"ruff>=0.8.1",
16+
]
17+
18+
[tool.uv.workspace]
19+
members = ["text_2_sql/text_2_sql_core"]

requirements-dev.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[project]
2+
name = "text-2-sql-core"
3+
version = "0.1.0"
4+
description = "Core Functionality for Text to SQL"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Ben Constable", email = "[email protected]" }
8+
]
9+
requires-python = ">=3.12"
10+
dependencies = []
11+
12+
[build-system]
13+
requires = ["hatchling"]
14+
build-backend = "hatchling.build"
File renamed without changes.

text_2_sql/text_2_sql_core/src/text_2_sql_core/connectors/__init__.py

Whitespace-only changes.

text_2_sql/text_2_sql_core/connectors/ai_search.py renamed to text_2_sql/text_2_sql_core/src/text_2_sql_core/connectors/ai_search.py

File renamed without changes.

text_2_sql/text_2_sql_core/connectors/sql.py renamed to text_2_sql/text_2_sql_core/src/text_2_sql_core/connectors/sql.py

File renamed without changes.

0 commit comments

Comments
 (0)