-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "python-cmr"
version = "0.14.0-a0"
description = "Python wrapper to the NASA Common Metadata Repository (CMR) API."
authors = ["python_cmr <nasa/[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nasa/python_cmr"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: IPython",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [{ include = "cmr" }]
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.26.0"
python-dateutil = "^2.8.2"
typing-extensions = "^4.11.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.0.0"
mypy = "^1.9.0"
pytest = "^6.2.5"
types-python-dateutil = "^2.9.0.20240316"
vcrpy = "^6.0.0"
types-requests = "^2.31"
[tool.mypy]
mypy_path = ["cmr", "tests"]
exclude = ".venv/|venv/"
pretty = true
strict = true
[[tool.mypy.overrides]]
module = [
"tests.*",
]
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = [
# TODO Remove when this is released: https://github.com/kevin1024/vcrpy/issues/780
"vcr.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = ["--doctest-modules"]