-
Notifications
You must be signed in to change notification settings - Fork 902
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #495 from bitcraze/rik/build
Dependency update, Py313 doc, and automatic versioning
- Loading branch information
Showing
4 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0", "wheel"] | ||
requires = ["setuptools>=61.0", "wheel", "setuptools_scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cflib" | ||
version = "0.1.27.1.dev0" | ||
dynamic = ["version"] | ||
description = "Crazyflie Python driver" | ||
authors = [ | ||
{ name = "Bitcraze and contributors", email = "[email protected]" }, | ||
|
@@ -15,9 +15,16 @@ license = { text = "GPLv3" } | |
keywords = ["driver", "crazyflie", "quadcopter"] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Topic :: System :: Hardware :: Hardware Drivers", | ||
"Topic :: Scientific/Engineering :: Robotics", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Developers", | ||
"Operating System :: Linux", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
|
||
# Supported Python versions | ||
"Programming Language :: Python :: 3.10", | ||
|
@@ -28,14 +35,13 @@ classifiers = [ | |
requires-python = ">= 3.10" | ||
|
||
dependencies = [ | ||
"pyusb>=1.0.0b2", | ||
"pyusb~=1.2", | ||
"libusb-package~=1.0", | ||
"scipy~=1.7", | ||
"numpy~=1.20", | ||
"packaging~=24.0", | ||
"scipy~=1.14", | ||
"numpy~=1.26", | ||
"packaging~=24.2", | ||
] | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://www.bitcraze.io" | ||
Documentation = "https://www.bitcraze.io/documentation/repository/crazyflie-lib-python/master/" | ||
|
@@ -53,3 +59,6 @@ find = { exclude = ["examples", "test"] } | |
|
||
[tool.setuptools.package-data] | ||
"cflib.resources.binaries" = ["cflib/resources/binaries/*.bin"] | ||
|
||
[tool.setuptools_scm] | ||
version_scheme = "no-guess-dev" |