forked from kivy-garden/garden.iconfonts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 938 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
[tool.poetry]
name = "kivysome"
version = "0.0.1"
description = "Font Awesome 5 Icons for Kivy"
authors = ["matfax <matthias.fax@gmail.com>"]
license = "mit"
keywords = ["kivy", "fa", "font", "awesome", "icons"]
repository = "https://github.com/matfax/kivysome"
homepage = "https://github.com/matfax/kivysome"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
mutapath = "^0.16.0"
urllib3 = "^1.25.7"
remotezip = "^0.9.2"
lastversion = "1.2.3"
semver = "^2.10.2"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
green = "^3.2.3"
kivy = "1.11.1"
pygments = "^2.7.1"
coverage = "^5.3"
codecov = "^2.1.9"
black = "^20.8b1"
bandit = "^1.6.2"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
pattern = '^v?(?P<base>\d+\.\d+\.\d+)(-?((?P<stage>[a-zA-Z]+)\.?(?P<revision>\d+)?))?$'
[build-system]
requires = ["poetry>=1.0.10", "poetry-dynamic-versioning>=0.8.3"]
build-backend = "poetry.masonry.api"