File tree Expand file tree Collapse file tree 1 file changed +19
-15
lines changed Expand file tree Collapse file tree 1 file changed +19
-15
lines changed Original file line number Diff line number Diff line change @@ -18,28 +18,32 @@ authors = [
18
18
dependencies = [
19
19
" harmony-service-lib (>=2.0.0)" ,
20
20
]
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
+ ]
21
31
22
32
[project .urls ]
23
33
Repository = " https://github.com/nasa/batchee"
24
34
Changelog = " https://github.com/nasa/batchee/blob/main/CHANGELOG.md"
35
+ "Bug Tracker" = " https://github.com/nasa/batchee/issues"
25
36
26
37
[project .scripts ]
27
38
batchee_harmony = ' batchee.harmony.cli:main'
28
39
batchee = ' batchee.tempo_filename_parser:main'
29
40
30
41
[tool .poetry ]
31
- version = " 1.5.2rc1 "
42
+ version = " 1.5.1 "
32
43
packages = [
33
44
{ include = " batchee" },
34
45
]
35
46
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
-
43
47
[[tool .mypy .overrides ]]
44
48
module = [
45
49
" harmony.*" ,
@@ -59,18 +63,18 @@ line-length = 100
59
63
target-version = " py312"
60
64
61
65
[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
65
66
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
69
70
]
70
71
select = [
71
72
" F" , # Pyflakes
72
73
" E" , # Pycodestyle
73
- " W" ,
74
+ " W" , # Pycodestyle warnings
74
75
" I" , # isort
75
76
" UP" , # Pyupgrade
76
77
]
78
+
79
+ [tool .ruff .lint .isort ]
80
+ known-first-party = [" batchee" ]
You can’t perform that action at this time.
0 commit comments