-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.52 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
58
59
60
61
62
63
64
[tool.poetry]
name = "mobile-strings-converter"
version = "0.1.4"
description = "Convert Android & iOS strings files to any supported file type and vice versa."
authors = ["José Carlos López <[email protected]>"]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Console",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Other OS",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
keywords = [
"android",
"strings.xml",
"strings",
"converter",
"csv",
"xlsx",
"yaml",
"html",
"json",
"ods",
"pdf",
"md",
"ios",
"Localizable.strings"
]
repository = "https://github.com/HenestrosaDev/mobile-strings-converter"
readme = "README.md"
packages = [{ include = "mobile_strings_converter", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.8"
pyyaml = "^6.0.1"
protobuf = "^5.26.1"
gspread = "^6.1.0"
openpyxl = "^3.1.2"
fpdf2 = "^2.7.8"
lingua-language-detector = "^2.0.2"
python-bidi = "^0.4.2"
arabic-reshaper = "^3.0.0"
ezodf = "^0.3.2"
pypdf2 = "^3.0.1"
lxml = "^5.2.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
codecov = "^2.1.12"
[tool.poetry.group.test.dependencies]
pandas = "^1.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"