pyproject.toml: update dependencies
[mdis.git] / pyproject.toml
1 [build-system]
2 requires = ["setuptools>=46.4.0", "toml", "wheel"]
3 build-backend = "setuptools.build_meta"
4
5 [project]
6 name = "mdis"
7 version = "0.5"
8 authors = [
9 { name="Dmitry Selyutin", email="ghostmansd@gmail.com" },
10 ]
11 keywords = [
12 "dispatch",
13 "dispather",
14 "map",
15 "iterator",
16 "iterable",
17 "visitor",
18 "walker",
19 ]
20 description = "Python dispatching library"
21 readme = "README.md"
22 requires-python = ">=3.0"
23 classifiers = [
24 "Development Status :: 2 - Pre-Alpha",
25 "Intended Audience :: Developers",
26 "Topic :: Software Development :: Libraries",
27 "Topic :: Software Development :: Libraries :: Python Modules",
28 "Programming Language :: Python :: 3",
29 "Programming Language :: Python :: 3 :: Only",
30 "License :: OSI Approved :: BSD License",
31 "Operating System :: OS Independent",
32 ]
33
34 [project.urls]
35 "Homepage" = "https://git.libre-soc.org/?p=mdis.git"
36 "Bug Tracker" = "https://bugs.libre-soc.org/"