-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (43 loc) · 1.37 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hitchstory"]
[project]
name = "hitchstory"
authors = [
{name = "Colm O'Connor", email = "[email protected]"},
]
description = "Type-safe YAML-based example specification driven development framework for python."
license = {file = "LICENSE.txt"}
requires-python = ">=3.7.0"
keywords = ["yaml", "hitchdev", "bdd", "tdd", "testing", "tests"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Text Processing :: Markup",
"Topic :: Software Development :: Libraries",
"Natural Language :: English",
"Environment :: Console",
]
dependencies = [
"strictyaml>=1.4.3",
"path.py>=9.0",
"jinja2>=2.9",
"colorama>=0.3.8",
"python-slugify>=1.2.1",
"prettystack>=0.3.0",
"psutil>=5.0.0",
"mergedeep>=1.2.0",
"click>=7.1.2"
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://hitchdev.com/hitchstory"
documentation = "https://hitchdev.com/hitchstory/using"
repository = "https://github.com/hitchdev/hitchstory"
changelog = "https://hitchdev.com/hitchstory/changelog"
[tool.setuptools.dynamic]
readme = {file = ["README.md",], content-type = "text/markdown"}
version = {file = "VERSION"}