-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (38 loc) · 1 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
[tool.poetry]
name = "chachacha"
description = "Chachacha changes changelogs"
version = "0.2.2"
authors = ["Alessandro Ogier <[email protected]>"]
readme = "README.md"
license = "BSD"
repository = "https://github.com/aogier/chachacha"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.scripts]
chachacha = "chachacha.main:main"
[tool.poetry.dependencies]
python = "^3.7"
keepachangelog = "^0.3.1"
click = "^8.1.0"
jinja2 = "^3.1.0"
semver = "^2.9.1"
[tool.poetry.dev-dependencies]
pytest = "^7"
mypy = "^0.971"
black = "^22"
autoflake = "^1.5"
pytest-cov = "^3"
pyinstaller = "^4.1"
pylint = "^2.5.3"
codecov = "^2.1.12"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"