-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (104 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (104 loc) · 2.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "artemis-thermal-base"
version = "0.4.0"
description = "Research-grade Lunar South Pole micro-illumination & thermal raytracer"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [
{ name = "Mehmet Gümüş", email = "spacegumus@gmail.com" },
]
keywords = [
"lunar",
"thermal",
"raytracing",
"illumination",
"south-pole",
"artemis",
"planetary-science",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.26.0",
"numba>=0.59.0",
"scipy>=1.12.0",
"matplotlib>=3.8.0",
"plotly>=5.18.0",
"pyyaml>=6.0.1",
"rasterio>=1.3.9",
"skyfield>=1.48",
"spiceypy>=6.0.0",
"tqdm>=4.66.0",
"xarray>=2024.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"mypy>=1.8.0",
"ruff>=0.2.0",
]
viz = [
"plotly>=5.18.0",
"kaleido>=0.2.1",
]
gui = [
"streamlit>=1.32.0",
"stpyvista>=0.1.2",
"pyarrow>=15.0.0",
]
[project.scripts]
artemis = "simulation.cli:main"
[project.urls]
Homepage = "https://github.com/SpaceEngineerSS/ArtemisThermalBase"
Repository = "https://github.com/SpaceEngineerSS/ArtemisThermalBase"
Documentation = "https://github.com/SpaceEngineerSS/ArtemisThermalBase/tree/main/docs"
Issues = "https://github.com/SpaceEngineerSS/ArtemisThermalBase/issues"
[tool.hatch.build.targets.wheel]
packages = [
"core_engine",
"data_ingestion",
"gui",
"simulation",
"thermal_solver",
"validation",
"visualization",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks integration tests",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "D", "UP", "S", "B"]
ignore = [
"D100", "D103", "D104", "D107", "D203", "D205", "D213", "D401", "D417",
"N802", "N803", "N806", "N815", "N816",
"S101",
]
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
ignore_missing_imports = true
disallow_untyped_decorators = false
disallow_any_generics = false
warn_return_any = false
warn_unused_configs = true
disable_error_code = ["import-untyped"]