-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 954 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
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "yo-runner"
version = "0.1.3.dev"
description = "A YAML-driven task runner for lazy people"
authors = ["Oliver Sherouse <[email protected]>"]
license = "GPL-2.0+"
readme = "README.md"
homepage = "https://github.com/OliverSherouse/yo-runner"
repository = "https://github.com/OliverSherouse/yo-runner"
keywords = ["build", "task", "runner"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools"
]
packages = [{include = "yo.py"}]
[tool.poetry.dependencies]
python = ">=3.6"
pyyaml = ">=3.13"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
pytest-flake8 = "^1.0"
Sphinx = "^1.8"
recommonmark = "^0.5.0"
[tool.poetry.scripts]
yo = "yo:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"