forked from imaginationtech/constrainedrandom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
27 lines (25 loc) · 795 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "constrainedrandom"
version = "1.2.2"
description = "A library for creating and solving constrained randomization problems"
readme = "README.md"
requires-python = ">=3.8.3"
license = { file="LICENSE" }
keywords = ["constraint", "constrained", "random", "randomization", "verification"]
authors = [
{ name="Will Keen", email="willkeencodes@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
]
dependencies = [
"python-constraint>=1.4.0",
]
[project.urls]
"Homepage" = "https://github.com/will-keen/constrainedrandom"
"Bug Tracker" = "https://github.com/will-keen/constrainedrandom/issues"