forked from arecarn/dploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 961 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
37
38
39
40
41
42
43
[tool.poetry]
name = "dploy"
version = "0.1.3-beta"
description = "Provides functionality similar to GNU Stow as a cross platform CLI tool and Python 3 module"
license = "MIT"
authors = ["Ryan Carney <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/arecarn/dploy"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities"
]
packages = [
{ include = "dploy" },
{ include = "tests" },
]
include = [
".pylintrc",
"CHANGELOG.md",
"conftest.py",
"invoke.yaml",
"requirements.txt",
"tasks.py",
]
[tool.poetry.scripts]
dploy = "dploy.__main__:main"
[tool.poetry.dependencies]
python = "^3.6.2"
importlib-metadata = { version = ">=1.0.0", python = "<3.8" }
[tool.poetry.dev-dependencies]
pytest = ">=4.6"
pytest-cov = ">=2.6.0"
pylint = "^2.0"
radon = ">=2.0.3"
invoke = "^1.0"
black = "^21.9b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"