Skip to content

Commit

Permalink
Add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Dec 10, 2023
1 parent 2f7610f commit 8ba4a99
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pyv4l2"
version = "0.1"
dependencies = [ ]
requires-python = ">=3.8"
authors = [
{name = "Tomi Valkeinen", email = "[email protected]"},
]
maintainers = [
{name = "Tomi Valkeinen", email = "[email protected]"},
]
description = "Pure-Python V4L2 bindings"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = ["linux", "v4l2"]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 4 - Beta",
]

[project.urls]
Homepage = "https://github.com/tomba/pyv4l2"
Repository = "https://github.com/tomba/pyv4l2.git"
"Bug Tracker" = "https://github.com/tomba/pyv4l2/issues"

0 comments on commit 8ba4a99

Please sign in to comment.