-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "podaac-hitide-backfill-tool"
version = "0.11.0-alpha.3"
description = "Backfill footprints and images for HiTIDE collections"
authors = ["PO.DAAC <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/podaac/hitide-backfill-tool"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
exclude = ['contrib', 'docs', 'tests', 'jenkins']
packages = [
{ include = "podaac" },
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.27.1"
boto3 = "^1.35.0"
pyyaml = "^6.0"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = "^0.26.0"
[tool.poetry.dev-dependencies]
pytest = "^8.0.1"
moto = {extras = ["sns"], version = "^4.2.6"}
flake8 = "^7.0.0"
pylint = "^3.0.3"
pytest-cov = "^5"
[tool.poetry.scripts]
backfill = "podaac.hitide_backfill_tool.cli:main"
backfill_replay = "podaac.hitide_backfill_tool.replay:main"
backfill_regression = "podaac.hitide_backfill_tool.regression:main"
backfill_memory_profiler = "podaac.hitide_backfill_tool.memory_profiler:main"
"create-backfill-config" = "podaac.hitide_backfill_tool.config_creator:create_config"
[tool.pytest.ini_options]
markers = [ "e2e" ]
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"