-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.33 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "AirTrafficSim"
version = "0.0.3"
authors = [
{name = "Frankie Hui", email = "[email protected]"},
]
description = "A web-based air traffic simulation software written in Python and javascript."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["air transportation", "atm", "simulations", "visualisation"]
license = {text = "GPL-3.0"}
classifiers = [
"Framework :: Flask",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"pandas",
"Flask",
"Flask-SocketIO",
"Eventlet",
"cartopy",
"cdsapi",
"xarray",
"openap"
]
[project.urls]
documentation = "https://hkust-octad-lab.github.io/AirTrafficSim/"
repository = "https://github.com/HKUST-OCTAD-LAB/AirTrafficSim"
[project.scripts]
airtrafficsim = "airtrafficsim.__main__:main"
[tool.setuptools]
packages = ["airtrafficsim",
"airtrafficsim.core",
"airtrafficsim.core.weather",
"airtrafficsim.core.performance",
"airtrafficsim.data",
"airtrafficsim.server",
"airtrafficsim.utils"]
include-package-data = true
[project.optional-dependencies]
tests = [
'pytest',
'coverage'
]
docs = [
'sphinx',
'myst-parser',
'furo',
'numpydoc'
]