-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 914 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 914 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tello_sdk"
version = "2.4.2"
description = "Python SDK fro the Tello EDU and RMTT drones, with all commands and more."
dependencies = ["sentry_sdk"]
authors = [{name="ErnGusMik"}]
readme = "README.md"
requires-python = ">=3.6.0"
keywords = [
"tello",
"drone",
"sdk",
"python",
"python3",
"rmtt",
"edu",
"telloedu",
"tello-rmtt",
"tello-edu",
"sdk"
]
license = { file = "LICENSE" }
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["tello_sdk*"]
[project.urls]
Homepage = "https://github.com/ErnGusMik/python-tello"