From 461e1ad12f25dc7d6795fcb3073658b5052ac25f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ce=CC=81dric=20Foellmi?= Date: Tue, 5 Nov 2024 10:31:00 +0100 Subject: [PATCH] Adding a whole new pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: CeĢdric Foellmi --- pyproject.toml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..83562ba --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,38 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "arcsecond" +version = "3.3.0" +authors = [ + { name = "Cedric Foellmi", email = "acedric@arcsecond.io" }, +] +description = "CLI for arcsecond.io" +readme = "README.md" +requires-python = ">=3.10" +license = { file = "LICENSE" } +classifiers = [ + 'Development Status :: 4 - Beta', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + "Operating System :: OS Independent", + 'Programming Language :: Python :: 3', + 'Topic :: Software Development :: Libraries :: Python Modules' +] +dependencies = [ + 'click', + 'requests', + 'requests_toolbelt', + 'configparser', + 'progress' +] + +[project.scripts] +arcsecond = "arcsecond.cli:main" + +[project.urls] +Homepage = "https://github.com/arcsecond-io/cli" +Issues = "https://github.com/arcsecond-io/cli/issues" +Documentation = "https://docs.arcsecond.io"