-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
48 lines (46 loc) · 1.5 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dice"
version = "4.0.0"
authors = [
{ name = "Sam Clements", email = "[email protected]" },
{ name = "Caleb Johnson", email = "[email protected]" },
]
maintainers = [
{ name = "Sam Clements", email = "[email protected]" },
]
description = "A library for parsing and evaluating dice notation"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Topic :: Utilities",
]
keywords = ["dice"]
dependencies = [
"pyparsing>=2.4.1",
]
urls = { homepage = "https://github.com/borntyping/python-dice" }
[project.scripts]
dice = "dice.command:main"
roll = "dice.command:main"