forked from darrenburns/ward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.5 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
48
49
50
51
52
53
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.ward]
path = ["ward/tests"]
[tool.poetry]
name = "ward"
version = "0.42.0b0"
description = "A modern Python testing framework"
exclude = ["ward/tests"]
authors = ["Darren Burns <darrenb900@gmail.com>"]
maintainers = ["Darren Burns <darrenb900@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://wardpy.com"
repository = "https://github.com/darrenburns/ward"
documentation = "https://wardpy.com"
keywords = ["test", "testing", "quality-assurance", "cli", "python3"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = { version = "^0.7", python = "3.6" }
colorama = "^0.3.3"
click = "^7.0"
termcolor = "^1.1.0"
toml = "^0.9.4"
pygments = "^2.4.2"
pprintpp = "^0.4.0"
cucumber-tag-expressions = "^2.0.0"
[tool.poetry.dev-dependencies]
black = "^19.9b0"
flake8 = "^3.7.0"
[tool.poetry.scripts]
ward = "ward.run:run"