forked from divvun/kbdgen-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 945 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
[tool.poetry]
name = "kbdgen"
version = "1.0.7"
description = "A generator for keyboard layouts"
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/divvun/kbdgen"
documentation = "https://divvun.github.io/kbdgen"
keywords = ["keyboard", "generator", "cldr"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License"
]
include = [
"kbdgen/*.yaml",
"kbdgen/gen/bin/*",
"LICENSE",
"CHANGELOG.md",
]
[tool.poetry.scripts]
kbdgen = "kbdgen.__main__:main"
cldr2kbdgen = "kbdgen.cldr:cldr2kbdgen_main"
kbdgen2cldr = "kbdgen.cldr:kbdgen2cldr_main"
[tool.poetry.dependencies]
python = "^3.4"
requests = "^2.20.1"
humanize = "^0.5.1"
pyyaml = "^3.13"
lcid = "^1.0.1"
lxml = "^4.2.5"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"