From: Dmitry Selyutin Date: Tue, 13 Jun 2023 19:35:47 +0000 (+0300) Subject: build: provide pyproject.toml X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ae63cd88251f2ceaf86c195b7fbf0fcdbf2fbf7;p=mdis.git build: provide pyproject.toml --- diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..008be12 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,36 @@ +[build-system] +requires = ["setuptools>=46.4.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "mdis" +version = "0.1" +authors = [ + { name="Dmitry Selyutin", email="ghostmansd@gmail.com" }, +] +keywords = [ + "dispatch", + "dispather", + "map", + "iterator", + "iterable", + "visitor", + "walker", +] +description = "Python dispatching library" +readme = "README.md" +requires-python = ">=3.0" +classifiers = [ + "Development Status :: 2 - Pre-Alpha", + "Intended Audience :: Developers", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://repo.or.cz/mdis.git" +"Bug Tracker" = "https://repo.or.cz/mdis.git"