forked from HeuristicPerson/bluetooth_2_hid
-
Notifications
You must be signed in to change notification settings - Fork 8
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 #63 from quaxalber/development
Create pyproject.toml (#15)
- Loading branch information
Showing
4 changed files
with
45 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# | ||
# Copyright (c) 1999-2002 Vojtech Pavlik | ||
# Copyright (c) 2015 Hans de Goede <[email protected]> | ||
# Copyright (c) 2023 Benjamin T. <github.com/quaxalber> | ||
# Copyright (c) 2023 Benjamin T. <evdev@quaxalber.de> | ||
# | ||
# This program is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License version 2 as published by | ||
|
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "bluetooth_2_usb" | ||
dynamic = ["version"] | ||
description = "Convert a Raspberry Pi into a HID relay translating Bluetooth keyboard and mouse input to USB." | ||
authors = [ | ||
{ name = "quaxalber", email = "[email protected]" }, | ||
] | ||
license = {file = "LICENSE.md"} | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.11", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: POSIX :: Linux", | ||
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Human Interface Device (HID)", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: End Users/Desktop", | ||
"Development Status :: 3 - Alpha", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/quaxalber/bluetooth_2_usb" | ||
Issues = "https://github.com/quaxalber/bluetooth_2_usb/issues" |