-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pymerlin"
version = "0.0.9"
dependencies = [
"py4j>=0.10.9.7"
]
requires-python = ">=3.11"
authors = [
{name = "Matthew Dailis", email = "[email protected]"},
]
maintainers = [
]
description = "Python mission modeling framework for Aerie"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["aerie", "merlin", "simulation", "discrete event"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]
[project.optional-dependencies]
plotting = [
"bokeh>=3.4.2",
"numpy>=2.0.0"
]
#gui = ["PyQt5"]
#cli = [
# "rich",
# "click",
#]
#spice = ["spiceypy"]
[project.urls]
Homepage = "https://mattdailis.github.io/pymerlin"
Documentation = "https://mattdailis.github.io/pymerlin"
Repository = "https://github.com/mattdailis/pymerlin"
"Bug Tracker" = "https://github.com/mattdailis/pymerlin/issues"
Changelog = "https://github.com/mattdailis/pymerlin/blob/main/CHANGELOG.md"
#[project.scripts]
#spam-cli = "spam:main_cli"
#
#[project.gui-scripts]
#spam-gui = "spam:main_gui"
#
#[project.entry-points."spam.magical"]
#tomatoes = "spam:main_tomatoes"
[tool.hatch.build.targets.sdist]
include = [
"pymerlin",
]
exclude = [
"java", "docs", "tests"
]