-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (42 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jdmtool"
version = "0.3.4"
authors = [
{ name="Dima Ryazanov", email="[email protected]" },
]
description = "Tool for downloading and transferring Jeppesen databases"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'importlib-metadata; python_version < "3.8"',
'platformdirs>=2.6.2',
'psutil>=5.9.4',
'pyudev>=0.24.3; sys_platform == "linux"',
'pywin32>=306; sys_platform == "win32"',
'requests>=2.26.0',
'tqdm>=4.1.0',
'typing_extensions; python_version < "3.11"',
]
[project.optional-dependencies]
jit = [
'numpy>=1.21.6',
'numba>=0.56.4',
]
usb = [
'libusb1>=2.0.1',
]
[project.urls]
Homepage = "https://github.com/dimaryaz/jdmtool"
Issues = "https://github.com/dimaryaz/jdmtool/issues"
Changelog = "https://github.com/dimaryaz/jdmtool/blob/main/CHANGELOG.md"
[project.scripts]
jdmtool = "jdmtool.main:main"
chartview = "jdmtool.chartview:main"