diff --git a/pyproject.toml b/pyproject.toml index 98e6106..8de6456 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,9 @@ [build-system] -requires = ["setuptools>=0.62.0"] -build-backend = "setuptools.build_meta" +requires = ["uv_build >= 0.8.17, <0.9.0"] +build-backend = "uv_build" + +[tool.uv.build-backend] +module-name = "cfdppy" [project] name = "cfdp-py" @@ -8,9 +11,9 @@ description = "Library for high level CCSDS File Delivery Protocol (CFDP) compon readme = "README.md" version = "0.6.0" requires-python = ">=3.9" -license = {text = "Apache-2.0"} +license = "Apache-2.0" authors = [ - {name = "Robin Mueller", email = "robin.mueller.m@gmail.com"} + { name = "Robin Mueller", email = "robin.mueller.m@pm.me" } ] keywords = ["ccsds", "space", "communication", "packet", "file-transfer"] classifiers = [ @@ -21,6 +24,9 @@ classifiers = [ "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Communications", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29..0000000