-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 1.95 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opensatcom"
version = "0.5.0"
description = "Professional-grade open-source Python toolkit for satellite communications engineering"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "John Hodge", email = "jah70@vt.edu" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"pyyaml>=6.0",
"pydantic>=2.0",
"matplotlib>=3.7",
"pyarrow>=12.0",
"scipy>=1.10",
"plotly>=5.15",
"seaborn>=0.12",
]
[project.urls]
Homepage = "https://github.com/jman4162/opensatcom"
Repository = "https://github.com/jman4162/opensatcom"
Documentation = "https://jman4162.github.io/opensatcom/"
Issues = "https://github.com/jman4162/opensatcom/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-timeout>=2.1",
"mypy>=1.5",
"ruff>=0.1",
"coverage>=7.0",
]
orbit = ["sgp4>=2.20"]
sensitivity = ["SALib>=1.4"]
notebooks = ["jupyterlab>=4.0", "ipywidgets>=8.0"]
docs = ["mkdocs>=1.6", "mkdocs-material>=9.5", "mkdocstrings[python]>=0.27"]
[project.scripts]
opensatcom = "opensatcom.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/opensatcom"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests",
"golden: marks tests as golden vector regression tests",
]
timeout = 60
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true
disable_error_code = ["type-arg", "import-untyped"]