-
Notifications
You must be signed in to change notification settings - Fork 0
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 #27 from jsconan/release-0.8.1
Release 0.8.1
- Loading branch information
Showing
6 changed files
with
38 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
black toolbox |
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,2 @@ | ||
#!/bin/sh | ||
pylint toolbox |
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,14 +1,15 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0", "requests>=2.31.0"] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "py-toolbox" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = [{ name = "Jean-Sébastien CONAN", email = "[email protected]" }] | ||
description = "A set of utilities for Python projects" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
dependencies = ["requests>=2.31.0"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -18,3 +19,16 @@ classifiers = [ | |
[project.urls] | ||
"Homepage" = "https://github.com/jsconan/py-toolbox" | ||
"Bug Tracker" = "https://github.com/jsconan/py-toolbox/issues" | ||
|
||
[project.optional-dependencies] | ||
linting = ['pylint==2.17.5'] | ||
formatting = ['black==23.9.1'] | ||
dev = ["pylint==2.17.5"] | ||
test = ["coverage==7.3.1"] | ||
|
||
[tool.pylint] | ||
max-line-length = 100 | ||
disable = [ | ||
"R0903", # (too-few-public-methods) | ||
"R0913", # (too-many-arguments) | ||
] |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
coverage run -m unittest && coverage report -m |