-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.34 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
[project]
name = "AstroForge"
version = "0.3.0"
description = "A Python library of astrodynamics tools"
readme = "README.md"
authors = [
{ name = "Jake Varey", email = "jakevarey@gmail.com" },
{ name = "Michael Tierney", email = "michael.kotson@ll.mit.edu" }
]
requires-python = ">=3.12"
dependencies = [
"numpy",
"numba",
"scipy",
"requests",
]
license = "MIT"
license-files = ["LICENSE.txt"]
keywords = ["astrodynamics", "space"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Documentation = "https://astroforge.readthedocs.io/en/latest/"
Repository = "https://github.com/mit-ll/AstroForge"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"linkify-it-py>=2.0.3",
"myst-parser>=4.0.1",
"nbsphinx>=0.9.6",
"pre-commit>=4.3.0",
"pydata-sphinx-theme>=0.16.1",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"sphinx>=8.2.3",
"sphinx-design>=0.6.1",
"tox>=4.30.2",
]
[tool.pytest.ini_options]
addopts = "--cov astroforge --cov-report term-missing --verbose"
testpaths = ["tests"]
markers = [
"download: marks tests as requiring an internet connection for downloading a file",
]