-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpyproject.toml
102 lines (93 loc) · 2.31 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
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "parrot-olympe"
version = "0.0.0" # the actual version is set by the release CI job
description = "Python controller library for Parrot Drones"
readme.file = "README.md"
readme.content-type = "text/markdown"
requires-python = ">=3.6"
license.text = "BSD 3-Clause Modification"
license.file = "LICENSE.md"
keywords = ["uav", "parrot", "drones", "parrot-drones"]
authors = [
{name = "Nicolas Dessart"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering"
]
dependencies = [
"aenum",
"asn1tools",
"black",
"boltons",
"colorlog",
"dacite",
"dataclasses; python_version == '3.6'",
"future",
"geopy",
"h11",
"ipython",
"importlib_metadata; python_version < '3.8'",
"numpy",
"typing-protocol; python_version < '3.8'",
"protobuf==3.19.4",
"pycryptodomex",
"pytz",
"PyYAML",
"requests",
"six",
"tzlocal<4.0",
"wsproto"
]
[project.optional-dependencies]
rendering = [
"PyOpenGL",
"PyOpenGL-accelerate",
"PySDL2"
]
doc = [
"Sphinx",
"blockdiag",
"furo",
"seqdiag",
"sphinx-copybutton",
"sphinxcontrib-seqdiag"
]
tests = [
"pytest"
]
[project.urls]
homepage = "https://developer.parrot.com/"
documentation = "https://developer.parrot.com/docs/olympe/"
repository = "https://github.com/Parrot-Developers/olympe"
[project.scripts]
olympe = "olympe.app:main"
[tool.alchemy]
top-levels = [
"olympe",
"olympe_deps",
"olympe_protobuf",
"arsdkparser.py",
"arsdk",
"logness",
"ulog.py",
"_ulog"
]
# Alchemy is not (yet) a python build system backend (See PEP 517 / PEP 518)
# [build-system]
# requires = ["alchemy-wheel>=1.3.8"]
# build-backend = "alchemy-wheel.api"