-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (38 loc) · 1.05 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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "kira-setup"
version = "0.1.0"
description = "Kira's CLI to setup new projects"
authors = ["sobolevn <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wemake-services/kira-setup"
homepage = "https://github.com/wemake-services/kira-setup"
keywords = [
"wemake.services",
"gitlab-bot",
"gitlab",
"kira",
"kira-bot"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
kira-setup = "kira_setup.cli:main"
[tool.poetry.dependencies]
python = "^3.6"
python-gitlab = ">=1.8,<3.0"
termcolor = "^1.1"
[tool.poetry.dev-dependencies]
mypy = "^0.902"
wemake-python-styleguide = "^0.14"
safety = "^1.10"