-
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 #17 from MicaelJarniac/develop
Develop
- Loading branch information
Showing
9 changed files
with
53 additions
and
36 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Simple URL builder""" | ||
"""Simple URL builder.""" | ||
|
||
__version__ = "4.0.0" | ||
|
||
|
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
Empty file.
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,18 +1,20 @@ | ||
black==20.8b1 | ||
build==0.3.0 | ||
coverage==5.4 | ||
flake8==3.8.4 | ||
flake8-black==0.2.1 | ||
black==21.9b0 | ||
build==0.7.0 | ||
coverage==6.0.1 | ||
flake8==3.9.2 | ||
flake8-black==0.2.3 | ||
flake8-docstrings==1.6.0 | ||
flake8-isort==4.0.0 | ||
isort==5.7.0 | ||
mypy==0.812 | ||
isort==5.9.3 | ||
mypy==0.910 | ||
mypy-extensions==0.4.3 | ||
pre-commit==2.10.1 | ||
pytest==6.2.2 | ||
pytest-cov==2.11.1 | ||
python-semantic-release==7.15.0 | ||
pre-commit==2.15.0 | ||
pydocstyle==6.1.1 | ||
pytest==6.2.5 | ||
pytest-cov==3.0.0 | ||
python-semantic-release==7.19.2 | ||
recommonmark==0.7.1 | ||
semver==2.13.0 | ||
Sphinx==3.5.1 | ||
sphinx-rtd-theme==0.5.1 | ||
sphinxcontrib-spelling==7.1.0 | ||
Sphinx==4.2.0 | ||
sphinx-rtd-theme==1.0.0 | ||
sphinxcontrib-spelling==7.2.1 |
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 |
---|---|---|
|
@@ -4,19 +4,26 @@ version = attr: buildurl.__version__ | |
author = Micael Jarniac | ||
author_email = [email protected] | ||
description = Simple URL builder | ||
license = MIT | ||
license_file = LICENSE | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/MicaelJarniac/BuildURL | ||
project_urls = | ||
Bug Tracker = https://github.com/MicaelJarniac/BuildURL/issues | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6 | ||
zip_safe = no | ||
|
||
[options.package_data] | ||
buildurl = py.typed | ||
|
||
[flake8] | ||
max-line-length = 88 | ||
|
@@ -26,6 +33,10 @@ ignore = E203, E266, E501, W503, F403, F401 | |
[isort] | ||
profile = black | ||
|
||
[pydocstyle] | ||
convention = google | ||
match_dir = buildurl | ||
|
||
[semantic_release] | ||
changelog_capitalize = false | ||
version_variable = buildurl/__init__.py:__version__ | ||
|
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,3 +1,5 @@ | ||
"""Project setup.""" | ||
|
||
import setuptools | ||
|
||
setuptools.setup() |
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