-
Notifications
You must be signed in to change notification settings - Fork 4
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 #346 from 0hsn/feat/update-package-management
Feature: Update package management
- Loading branch information
Showing
13 changed files
with
2,084 additions
and
1,674 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[mypy] | ||
python_version = 3.11 | ||
python_version = 3.13 | ||
warn_redundant_casts = true | ||
warn_unused_ignores = true | ||
|
||
|
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 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
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 |
---|---|---|
@@ -1,5 +1,69 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=45", | ||
[tool.poetry] | ||
name = "chk" | ||
version = "0.5.0" | ||
description = "Low-code API quality testing, and automation toolbox" | ||
authors = ["Mahmudul Hasan <hasanlock@gmail.com>"] | ||
|
||
license = "MPL-2.0" | ||
readme = "README.md" | ||
|
||
homepage = "https://chkware.com/" | ||
repository = "https://github.com/chkware/cli" | ||
documentation = "https://chkware.com/docs" | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: Information Technology", | ||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Quality Assurance", | ||
"Topic :: Software Development :: Testing", | ||
"Topic :: System :: Networking", | ||
"Topic :: Terminals", | ||
"Topic :: Text Processing", | ||
"Topic :: Utilities", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
exclude = ["tests", "tests.*", "docs", "docs.*"] | ||
packages = [{ include = "chk" }] | ||
|
||
[tool.poetry.urls] | ||
"Bug Tracker" = "https://github.com/chkware/cli/issues" | ||
"Ask a question" = "https://github.com/orgs/chkware/discussions/categories/q-a" | ||
Twitter = "https://twitter.com/chkware" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.13" | ||
click = "^8.1.7" | ||
pyyaml = "^6.0.2" | ||
requests = "^2.32.3" | ||
cerberus = "^1.3.5" | ||
defusedxml = "^0.7.1" | ||
xmltodict = "^0.14.2" | ||
python-dotenv = "^1.0.1" | ||
pydantic = "^2.10.4" | ||
loguru = "^0.7.3" | ||
jinja2 = "^3.1.4" | ||
|
||
[tool.poetry.group.test.dependencies] | ||
pytest = "^8.3.4" | ||
mypy = "^1.14.0" | ||
pylint = "^3.3.2" | ||
flake8 = "^7.1.1" | ||
black = "^24.10.0" | ||
icecream = "^2.1.3" | ||
requests-mock = "^1.12.1" | ||
pytest-cov = "^6.0.0" | ||
|
||
[tool.poetry.scripts] | ||
chk = "chk.console.main:chk" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
Oops, something went wrong.