Skip to content

Commit 09c0341

Browse files
fix: add ruff to dev dependencies so CI lint step can find it
1 parent 2b0185d commit 09c0341

1 file changed

Lines changed: 62 additions & 61 deletions

File tree

pyproject.toml

Lines changed: 62 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,63 @@
1-
[build-system]
2-
requires = ["setuptools>=68.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
4-
5-
[project]
6-
name = "deploydiff"
7-
version = "0.1.0"
8-
description = "Preview infrastructure changes (Terraform, CloudFormation, Pulumi) with cost impact and rollback commands"
9-
readme = "README.md"
10-
requires-python = ">=3.9"
11-
license = "MIT"
12-
authors = [{name = "Revenue Holdings"}]
13-
14-
dependencies = [
15-
"click>=8.1",
16-
"rich>=13.0",
17-
"pyyaml>=6.0",
18-
]
19-
keywords = ["infrastructure", "terraform", "cloudformation", "pulumi", "cost", "diff", "cli"]
20-
classifiers = [
21-
"Development Status :: 4 - Beta",
22-
"Intended Audience :: Developers",
23-
"Topic :: System :: Systems Administration",
24-
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.9",
26-
"Programming Language :: Python :: 3.10",
27-
"Programming Language :: Python :: 3.11",
28-
"Programming Language :: Python :: 3.12",
29-
]
30-
31-
[project.optional-dependencies]
32-
license = ["revenueholdings-license>=0.1.0"]
33-
dev = [
34-
"pytest>=7.0",
35-
"pytest-cov>=4.0",
36-
]
37-
38-
[project.scripts]
39-
deploydiff = "deploydiff.cli:main"
40-
41-
[project.urls]
42-
Homepage = "https://github.com/Coding-Dev-Tools/deploydiff"
43-
Repository = "https://github.com/Coding-Dev-Tools/deploydiff"
44-
Documentation = "https://github.com/Coding-Dev-Tools/deploydiff#readme"
45-
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/deploydiff/issues"
46-
47-
[tool.setuptools.packages.find]
48-
where = ["src"]
49-
50-
[tool.pytest.ini_options]
51-
testpaths = ["tests"]
52-
53-
[tool.ruff]
54-
target-version = "py310"
55-
line-length = 120
56-
57-
[tool.ruff.lint]
58-
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
59-
ignore = ["E501"]
60-
61-
[tool.ruff.lint.isort]
1+
[build-system]
2+
requires = ["setuptools>=68.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "deploydiff"
7+
version = "0.1.0"
8+
description = "Preview infrastructure changes (Terraform, CloudFormation, Pulumi) with cost impact and rollback commands"
9+
readme = "README.md"
10+
requires-python = ">=3.9"
11+
license = "MIT"
12+
authors = [{name = "Revenue Holdings"}]
13+
14+
dependencies = [
15+
"click>=8.1",
16+
"rich>=13.0",
17+
"pyyaml>=6.0",
18+
]
19+
keywords = ["infrastructure", "terraform", "cloudformation", "pulumi", "cost", "diff", "cli"]
20+
classifiers = [
21+
"Development Status :: 4 - Beta",
22+
"Intended Audience :: Developers",
23+
"Topic :: System :: Systems Administration",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
29+
]
30+
31+
[project.optional-dependencies]
32+
license = ["revenueholdings-license>=0.1.0"]
33+
dev = [
34+
"pytest>=7.0",
35+
"pytest-cov>=4.0",
36+
"ruff>=0.4.0",
37+
]
38+
39+
[project.scripts]
40+
deploydiff = "deploydiff.cli:main"
41+
42+
[project.urls]
43+
Homepage = "https://github.com/Coding-Dev-Tools/deploydiff"
44+
Repository = "https://github.com/Coding-Dev-Tools/deploydiff"
45+
Documentation = "https://github.com/Coding-Dev-Tools/deploydiff#readme"
46+
"Issue Tracker" = "https://github.com/Coding-Dev-Tools/deploydiff/issues"
47+
48+
[tool.setuptools.packages.find]
49+
where = ["src"]
50+
51+
[tool.pytest.ini_options]
52+
testpaths = ["tests"]
53+
54+
[tool.ruff]
55+
target-version = "py310"
56+
line-length = 120
57+
58+
[tool.ruff.lint]
59+
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
60+
ignore = ["E501"]
61+
62+
[tool.ruff.lint.isort]
6263
known-first-party = ["*"]

0 commit comments

Comments
 (0)