mirror of
https://github.com/0xMax42/pydepp.git
synced 2025-08-05 10:10:21 +02:00
Introduces a pyproject.toml file to define build-system requirements and project metadata. Specifies setuptools as the build backend and configures package discovery. Establishes project details including name, version, description, authors, license, and Python version compatibility. Supports PEP 517 standards for Python packaging.
17 lines
414 B
TOML
17 lines
414 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pydepp"
|
|
version = "0.1.0"
|
|
description = "Python interface for the Digilent DEPP protocol using the Adept SDK"
|
|
authors = [{ name = "Max Mustermann", email = "you@example.com" }]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pydepp"]
|