Skip to content

Commit 079e619

Browse files
Update pyproject.toml
1 parent fe97378 commit 079e619

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

pyproject.toml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,32 @@ authors = [
1818
dependencies = [
1919
"harmony-service-lib (>=2.0.0)",
2020
]
21+
keywords = ["nasa", "earthdata", "batch"]
22+
23+
[project.optional-dependencies]
24+
dev = [
25+
"coverage>=7.8.0",
26+
"ruff>=0.11.8",
27+
"pytest>=8.3.5",
28+
"mypy>=1.15.0",
29+
"pytest-cov>=6.1.1",
30+
]
2131

2232
[project.urls]
2333
Repository = "https://github.com/nasa/batchee"
2434
Changelog = "https://github.com/nasa/batchee/blob/main/CHANGELOG.md"
35+
"Bug Tracker" = "https://github.com/nasa/batchee/issues"
2536

2637
[project.scripts]
2738
batchee_harmony = 'batchee.harmony.cli:main'
2839
batchee = 'batchee.tempo_filename_parser:main'
2940

3041
[tool.poetry]
31-
version = "1.5.2rc1"
42+
version = "1.5.1"
3243
packages = [
3344
{ include = "batchee" },
3445
]
3546

36-
[tool.poetry.group.dev.dependencies]
37-
coverage = ">=7.8.0"
38-
ruff = ">=0.11.8"
39-
pytest = ">=8.3.5"
40-
mypy = ">=1.15.0"
41-
pytest-cov = ">=6.1.1"
42-
4347
[[tool.mypy.overrides]]
4448
module = [
4549
"harmony.*",
@@ -59,18 +63,18 @@ line-length = 100
5963
target-version = "py312"
6064

6165
[tool.ruff.lint]
62-
# E402: module level import not at top of file
63-
# E501: line too long - let black worry about that
64-
# E731: do not assign a lambda expression, use a def
6566
ignore = [
66-
"E402",
67-
"E501",
68-
"E731",
67+
"E402", # module level import not at top of file
68+
"E501", # line too long - let ruff format handle it
69+
"E731", # do not assign a lambda expression, use a def
6970
]
7071
select = [
7172
"F", # Pyflakes
7273
"E", # Pycodestyle
73-
"W",
74+
"W", # Pycodestyle warnings
7475
"I", # isort
7576
"UP", # Pyupgrade
7677
]
78+
79+
[tool.ruff.lint.isort]
80+
known-first-party = ["batchee"]

0 commit comments

Comments
 (0)