-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.16 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hitchskeleton"]
[project]
name = "hitchskeleton"
authors = [
{name = "Colm O'Connor", email = "colm.oconnor.github@gmail.com"},
]
description = "Bootstrap an integration test environment."
license = {text = "MIT"}
requires-python = ">=3.7.0"
keywords = ["integration-tests", "tests", "testing", "jinja2"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing :: Markup",
"Topic :: Software Development :: Libraries",
"Natural Language :: English",
]
dependencies = [
"click>=8.1.3",
"commandlib>=0.3.5",
"path.py>12.0",
]
dynamic = ["version", "readme"]
[project.scripts]
hitchskeleton = "hitchskeleton:cli"
[project.urls]
homepage = "https://hitchdev.com/hitchskeleton"
documentation = "https://hitchdev.com/hitchskeleton/using"
repository = "https://github.com/hitchdev/hitchskeleton"
changelog = "https://hitchdev.com/hitchskeleton/changelog"
[tool.setuptools.dynamic]
readme = {file = ["README.md",], content-type = "text/markdown"}
version = {file = "VERSION"}