-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dicetables"
version = "4.0.3"
dependencies = []
requires-python = ">=3.7"
authors = [
{name = "Eric Shaw", email = "[email protected]"},
]
maintainers = [
{name = "Eric Shaw", email = "[email protected]"},
]
description = "get all combinations for any set of dice"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Games/Entertainment :: Role-Playing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://allthedice.com"
Documentation = "https://dice-tables.readthedocs.io/en/latest"
Repository = "https://github.com/eric-s-s/dice-tables.git"
Issues = "https://github.com/eric-s-s/dice-tables/issues"
Changelog = "https://github.com/eric-s-s/dice-tables/blob/master/CHANGELOG.md"
[tool.ruff]
line-length = 100