From b621f662c82b0198f49edf0dd754c1aec9bcc4c1 Mon Sep 17 00:00:00 2001 From: Mark Linvill <36269251+mlinvill@users.noreply.github.com> Date: Tue, 1 Aug 2023 11:19:04 -0400 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e981fa4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[project] +name = "distributedlock" +version = "0.0.1" +authors = [ + { name="Mark Linvill", email="mlinvill@purdue.edu" }, +] +description = "A trivial distributed write lock implementation" +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://github.com/mlinvill/distributedlock" +"Bug Tracker" = "https://github.com/mlinvill/distributedlock/issues" + +[build-system] +requires = ["hatchling", "click", "python-dotenv", "rich", "pysyncobj"] +build-backend = "hatchling.build"