-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
38 lines (33 loc) · 1.08 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
[tool.poetry]
name = "podaac-data-subscriber"
version = "1.15.2"
description = "PO.DAAC Data Subscriber Command Line Tool"
authors = ["PO.DAAC <podaac@podaac.jpl.nasa.gov>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/podaac/data-subscriber"
exclude = ['cmr', 'img', 'tests']
packages = [
{ include = "subscriber" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
tenacity = "^8.0.1"
packaging = "^23.0"
harmony-py = "^0.4.12"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
flake8 = "^4.0.1"
pytest-mock = "^3.8.2"
[tool.poetry.scripts]
podaac-data-subscriber = 'subscriber.podaac_data_subscriber:main'
podaac-data-downloader = 'subscriber.podaac_data_downloader:main'
[tool.pytest.ini_options]
markers = [
"regression: marks a test as a regression, requires netrc file (deselect with '-m \"not regresion\"')",
"token: marks a test as a token regression, requires netrc file and relies on enterprise URS (deselect with '-m \"not token\"')"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"