-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.28 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
50
51
52
53
54
55
56
57
[tool.poetry]
name = "babelbox"
version = "2.1.1"
description = "A language localization generator for Minecraft"
authors = ["Oran9eUtan <Oran9eUtan@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/OrangeUtan/babelbox"
repository = "https://github.com/OrangeUtan/babelbox"
keywords = ["minecraft", "lang", "csv", "json", "localization", "translation"]
include = [
"LICENSE"
]
[tool.poetry.scripts]
babelbox = "babelbox.__main__:app"
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.3.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
hypothesis = "^6.3.4"
pytest-cov = "^2.11.1"
coverage-badge = "^1.0.1"
pre-commit = "^2.10.1"
invoke = "^1.5.0"
rope = "^0.18.0"
pytest-insta = "^0.1.7"
python-semantic-release = "^7.15.3"
beet = "^0.19.1"
black = "^20.8b1"
isort = "^5.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 95
target-version = ['py37', 'py38']
[tool.isort]
profile = "black"
line_length = 95
[tool.coverage.run]
source = ["babelbox"]
omit = ["babelbox/__main__.py"]
[tool.semantic_release]
branch="release"
version_toml = "pyproject.toml:tool.poetry.version"
version_variable = ["babelbox/__init__.py:__version__"]
major_on_zero = false
build_command = "poetry build"