-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathpyproject.toml
90 lines (77 loc) · 2.03 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
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
[project]
name = "bluesky-simulator"
dynamic = ["version"]
dependencies = [
"numpy >= 2.0.0",
"scipy >= 1.13.0",
"matplotlib >= 3.9.0",
"pandas >= 2.2.0",
"msgpack >= 1.0.0",
"zmq",
"bluesky-navdata"
]
authors = [
{ name="Joost Ellerbroek", email="[email protected]" },
{ name="Jacco Hoekstra", email="[email protected]" }
]
description = "The Open Air Traffic Simulator."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ['ATM', 'transport', 'simulation', 'aviation', 'aircraft']
[project.optional-dependencies]
pygame = ["pygame"]
qt6 = [
"pyopengl",
"PyQt6",
"PyQt6-WebEngine",
"bluesky-guidata"
]
console = ["textual"]
full =[
"pygame",
"pyopengl",
"PyQt6",
"PyQt6-WebEngine",
"textual",
"bluesky-guidata",
]
# For headless (server-only) bluesky environment: pip install bluesky-simulator[headless]
headless = [
# no extra dependencies
]
[project.scripts]
bluesky = "bluesky.__main__:main"
[project.urls]
Homepage = "https://github.com/TUDelft-CNS-ATM/bluesky"
Issues = "https://github.com/TUDelft-CNS-ATM/bluesky/issues"
Documentation = "https://github.com/TUDelft-CNS-ATM/bluesky/wiki"
Repository = "https://github.com/TUDelft-CNS-ATM/bluesky"
# Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling==1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
include = [
"bluesky/*",
]
exclude = [
'docs',
'utils',
'bluesky/test',
'bluesky/resources/navdata',
'bluesky/resources/graphics',
'bluesky/resources/html'
]
[tool.hatch.build.targets.wheel.hooks.custom]
dependencies = ["setuptools>=69.1.1", "numpy"]