-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
61 lines (56 loc) · 1.95 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
[tool.poetry]
name = "rtcclient"
version = "0.9.0"
homepage = "https://github.com/dixudx/rtcclient"
description = "RTCClient for Rational Team Concert"
authors = ["Di Xu <[email protected]>"]
readme = "README.rst"
license = "Apache License Version 2.0"
keywords = ["rtcclient", "Rational Team Concert", "RTC"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "rtcclient" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.7.0,<4.0"
PySocks = ">=1.5.6"
jinja2 = ">=2.2"
requests = ">=2.10.0"
six = "*"
xmltodict = "^0.13.0"
lxml = "^4.9.2"
[tool.poetry.group.devel]
optional = true
[tool.poetry.group.devel.dependencies]
pip = "^23.0.1"
pycodestyle = "*"
pytest = "^7.2.0"
pytest-env = "*"
pytest-mock = ">=0.6.0"
flake8 = [
{ version = "^6.0.0", python = ">=3.8.1" },
{ version = "^5.0.4", python = "<3.8.1" }
]
yapf = "*"
tox = "*"
toml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"