pyproject.toml (574B)
1 [build-system] 2 requires = ["setuptools>=61.0"] 3 build-backend = "setuptools.build_meta" 4 5 [project] 6 name = "ratchets" 7 version = "0.2.11" 8 description = "Ratcheted testing in Python." 9 authors = [ 10 { name = "Andrew Laack", email = "andrew@laack.co" } 11 ] 12 readme = "README.md" 13 license = { text = "GPL-3.0-only" } 14 requires-python = ">=3.7" 15 dependencies = [ 16 "pathspec~=0.12.1", 17 "toml~=0.10.2" 18 ] 19 20 [project.optional-dependencies] 21 test = [ 22 "pytest>=7.0" 23 ] 24 25 [project.urls] 26 Homepage = "https://github.com/andrewlaack/ratchets" 27 Repository = "https://github.com/andrewlaack/ratchets"