-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (50 loc) · 1.53 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
[tool.poetry]
name = "python-lokalise-api"
version = "3.0.0"
description = "Official Python interface for the Lokalise API v2"
authors = ["Ilya Krukowski <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/lokalise/python-lokalise-api"
documentation = "https://python-lokalise-api.readthedocs.io/"
keywords = ["lokalise", "api", "client"]
classifiers=[
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
packages = [
{ include = "lokalise" }
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31"
exceptiongroup = { version = "*", python = "< 3.11" }
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
vcrpy = "^6.0"
pytest-vcr = "^1.0.2"
pytest-cov = "^5.0"
pylint = "^3.3"
pytest-pylint = "^0.21"
mypy = "^1.7"
python-dotenv = "^1.0"
autopep8 = "^2.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/lokalise/python-lokalise-api/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
norecursedirs = ".git .github tmp* .eggs bin build include lib share src lokalise docs"
addopts = "-s --cov=lokalise --cov-report html --pylint"
[tool.pylint.MASTER]
min-public-methods="0"
max-public-methods="150"
min-similarity-lines="5"
max-module-lines="2500"
disable="W3101"