-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.65 KB
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
[tool.poetry]
# Project metadata, moved from the [project] section for Poetry compatibility.
name = "cue-provider-utility"
version = "1.1.0"
description = "CLI utility for uploading data to CUE (Cloud Upload Environment)"
authors = ["Navaneeth Selvaraj <ns0066@uah.edu>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "cue_provider_utility"}]
[tool.poetry.dependencies]
# The python version is specified here for Poetry.
python = "^3.10"
# List of production dependencies required for the CLI to run.
click = ">=8.1.3,<9.0.0"
httpx = {extras = ["http2"], version = ">=0.27.0,<0.28.0"}
aiofiles = ">=23.2.1,<24.0.0"
pydantic = ">=2.5.0,<3.0.0"
puremagic = ">=1.15,<2.0.0"
toml = ">=0.10.2,<0.11.0"
rich = ">=13.7.0,<14.0.0"
[tool.poetry.group.dev.dependencies]
# Dependencies used only for development (testing, linting, formatting).
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.0"
pytest-httpx = "^0.31.0"
flake8 = "^7.0.0"
black = "^24.0.0"
mypy = "^1.8.0"
isort = "^5.13.0"
[build-system]
# Standard build system configuration for Poetry.
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# This defines the command-line entry point for the application.
# Running `cue-upload` will execute the `cli_app` function in `main.py`.
cue-upload = "cue_provider_utility.main:cli_app"
# --- Code Quality Tool Configurations ---
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
disallow_untyped_defs = true
check_untyped_defs = true