-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 766 Bytes
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
[tool.poetry]
name = "clinner"
version = "1.12.3"
description = "Command Line Interface builder that helps creating an entry point for your application."
authors = ["José Antonio Perdiguero López <perdy@perdy.io>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/PeRDy/clinner"
keywords = ["command", "cli", "interface", "run", "script"]
[package]
include = ["clinner/**/*.py"]
[tool.poetry.dependencies]
python = "^3.5"
colorlog = "^3.1"
[tool.poetry.dev-dependencies]
pytest = "^3.6"
pytest-xdist = "^1.22"
pytest-cov = "^2.5"
tox = "^3.0"
ipython = "^6.4"
sphinx = "^1.7"
sphinx_rtd_theme = "^0.4.0"
flake8 = "^3.5"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| build
| dist
)/
'''