-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from gpongelli/poetry
move to poetry
- Loading branch information
Showing
8 changed files
with
1,039 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[tool.poetry] | ||
name = "rtcclient" | ||
version = "0.8.3" | ||
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 = "*" | ||
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 = "*" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters