-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "phrasetms_client"
version = "1.0.0"
description = "Phrase TMS API"
authors = ["Martin Chrástek"]
license = "LGPL-3.0"
readme = "README.md"
homepage = "https://github.com/Martin005/phrasetms-python"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
repository = "https://github.com/Martin005/phrasetms-python"
keywords = ["Phrase TMS API", "Phrase TMS"]
[tool.poetry.dependencies]
python = "^3.9"
urllib3 = ">= 1.25.3"
python-dateutil = ">=2.8.2"
pydantic = "^1.10.5, <2"
aenum = ">=3.1.11"
[project]
name = "phrasetms_client"
version = "1.0.0"
description = "Phrase TMS API"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"setuptools >= 21.0.0",
"python-dateutil >= 2.5.3",
"urllib3 >= 1.25.3",
"pydantic >= 2.0.0",
]
[dependency-groups]
dev = [
"pytest >= 7.2.1",
"tox >= 3.9.0",
"flake8 >= 4.0.0",
]
[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
flake8 = ">=4.0.0"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"