-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
45 lines (35 loc) · 1.06 KB
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
[tool.poetry]
name = "localizationkit"
version = "3.1.0"
description = "String localization tests"
license = "MIT"
authors = ["Dale Myers <dalemy@microsoft.com>"]
readme = 'README.md'
repository = "https://github.com/Microsoft/localizationkit"
homepage = "https://github.com/Microsoft/localizationkit"
keywords = ['localization', 'strings', 'tests']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
[tool.poetry.dependencies]
python = "^3.11"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
black = "25.1.0"
mypy = "1.15.0"
pylint = "3.3.4"
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
types-toml = "^0.10.8.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"