-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (62 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "unity-sps"
version = "2.3.0"
authors = [
{ name = "Drew Meyers", email = "drew.meyers@jpl.nasa.gov" },
{ name = "Luca Cinquini", email = "luca.cinquini@jpl.nasa.gov" },
{ name = "Nikki Tebaldi", email = "nicole.tebaldi@jpl.nasa.gov" },
{ name = "Brad Lunsford", email = "bradley.t.lunsford@jpl.nasa.gov" }
]
description = "The science processing service area of Unity."
classifiers = [
"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",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
[project.license]
text = "Apache-2.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/unity-sds/unity-sps"
[project.optional-dependencies]
develop = []
test = [
"python-dotenv==1.0.1",
"pytest==8.3.3",
"pytest-bdd==7.2.0",
"pytest-mock==3.14.0",
"requests==2.32.3",
"apache-airflow==2.10.3",
"kubernetes==29.0.0",
"boto3==1.34.46",
"backoff==2.2.1",
"apache-airflow-providers-cncf-kubernetes==8.4.1",
"unity_sps_ogc_processes_api_python_client @ git+https://github.com/unity-sds/unity-sps-ogc-processes-api-client-python.git@2.0.0"
]
experiment = []
lambda-airflow-dag-trigger = [
"requests==2.32.3",
"aws-lambda-powertools[parser]==2.41.0",
]
[tool.setuptools.packages.find]
exclude = ["tests*"]
namespaces = false
[tool.isort]
line_length = 110
[tool.black]
line-length = 110
[tool.ruff]
line-length = 110
[tool.ruff.lint]
ignore = ["E501", "E402", "E731"]
[tool.bandit.assert_used]
skips = ['*_test.py', '*/test_*.py']