Skip to content

Commit 210bed2

Browse files
fix: add ruff to dev dependencies so CI lint step can find it
1 parent bfad516 commit 210bed2

1 file changed

Lines changed: 54 additions & 53 deletions

File tree

pyproject.toml

Lines changed: 54 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
1-
[build-system]
2-
requires = ["setuptools>=68.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
4-
5-
[project]
6-
name = "schemaforge"
7-
version = "1.7.0"
8-
description = "Bidirectional ORM schema converter — convert between SQL DDL, Prisma, Drizzle, TypeORM, Django, SQLAlchemy, Alembic, JSON Schema, GraphQL SDL, EF Core (C#), and Scala case classes with zero-loss roundtripping"
9-
readme = "README.md"
10-
requires-python = ">=3.10"
11-
license = "MIT"
12-
authors = [{name = "Revenue Holdings"}]
13-
keywords = ["schema", "orm", "prisma", "drizzle", "typeorm", "django", "sql", "converter", "migration"]
14-
15-
dependencies = [
16-
"click>=8.4.0",
17-
"rich>=13.0",
18-
"pyyaml>=6.0",
19-
"sqlparse>=0.5.5",
20-
]
21-
22-
[project.optional-dependencies]
23-
license = ["revenueholdings-license>=0.1.0"]
24-
dev = [
25-
"pytest>=7.0",
26-
"pytest-cov>=4.0",
27-
"mcp>=1.0",
28-
]
29-
mcp = ["mcp>=1.0"]
30-
31-
[project.scripts]
32-
schemaforge = "schemaforge.cli:main"
33-
34-
[project.urls]
35-
Homepage = "https://github.com/Coding-Dev-Tools/schemaforge"
36-
Repository = "https://github.com/Coding-Dev-Tools/schemaforge"
37-
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/schemaforge/issues"
38-
39-
[tool.setuptools.packages.find]
40-
where = ["src"]
41-
42-
[tool.pytest.ini_options]
43-
testpaths = ["tests"]
44-
45-
[tool.ruff]
46-
target-version = "py310"
47-
line-length = 120
48-
49-
[tool.ruff.lint]
50-
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
51-
ignore = ["E501"]
52-
53-
[tool.ruff.lint.isort]
1+
[build-system]
2+
requires = ["setuptools>=68.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "schemaforge"
7+
version = "1.7.0"
8+
description = "Bidirectional ORM schema converter — convert between SQL DDL, Prisma, Drizzle, TypeORM, Django, SQLAlchemy, Alembic, JSON Schema, GraphQL SDL, EF Core (C#), and Scala case classes with zero-loss roundtripping"
9+
readme = "README.md"
10+
requires-python = ">=3.10"
11+
license = "MIT"
12+
authors = [{name = "Revenue Holdings"}]
13+
keywords = ["schema", "orm", "prisma", "drizzle", "typeorm", "django", "sql", "converter", "migration"]
14+
15+
dependencies = [
16+
"click>=8.4.0",
17+
"rich>=13.0",
18+
"pyyaml>=6.0",
19+
"sqlparse>=0.5.5",
20+
]
21+
22+
[project.optional-dependencies]
23+
license = ["revenueholdings-license>=0.1.0"]
24+
dev = [
25+
"pytest>=7.0",
26+
"pytest-cov>=4.0",
27+
"mcp>=1.0",
28+
"ruff>=0.4.0",
29+
]
30+
mcp = ["mcp>=1.0"]
31+
32+
[project.scripts]
33+
schemaforge = "schemaforge.cli:main"
34+
35+
[project.urls]
36+
Homepage = "https://github.com/Coding-Dev-Tools/schemaforge"
37+
Repository = "https://github.com/Coding-Dev-Tools/schemaforge"
38+
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/schemaforge/issues"
39+
40+
[tool.setuptools.packages.find]
41+
where = ["src"]
42+
43+
[tool.pytest.ini_options]
44+
testpaths = ["tests"]
45+
46+
[tool.ruff]
47+
target-version = "py310"
48+
line-length = 120
49+
50+
[tool.ruff.lint]
51+
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
52+
ignore = ["E501"]
53+
54+
[tool.ruff.lint.isort]
5455
known-first-party = ["*"]

0 commit comments

Comments
 (0)