-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 871 Bytes
/
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyastronautics"
version = "0.0.30"
description = "A Python package designed for astronautical engineers, providing tools for spacecraft design analysis, simulations, and optimization"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Eduardo Ocampo", email = "ocampoe@usc.edu" }
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy"
]
[project.urls]
"Documentation" = "https://eduardo-ocampo.github.io/PyAstronautics/"
"Source" = "https://github.com/eduardo-ocampo/PyAstronautics"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-wagtail-theme",
"myst-parser"
]
test = [
"pytest"
]