-
Notifications
You must be signed in to change notification settings - Fork 17
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 #18 from fredrik-corneliusson/17-add-simple-raw-ap…
…i-to-make-commands-easier-to-call-from-scripts 17 add simple raw api to make commands easier to call from scripts
- Loading branch information
Showing
5 changed files
with
96 additions
and
14 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 |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
|
||
requirements = [ | ||
'click>=8.0', | ||
'Flask>=1.1', | ||
'Jinja2>=2.11', | ||
'Flask>=2.3.2', | ||
'Jinja2>=3.1.3', | ||
'flask_httpauth>=3.2.4' | ||
] | ||
|
||
|
@@ -25,7 +25,7 @@ | |
|
||
setup( | ||
name='click-web', | ||
version='0.8.3', | ||
version='0.8.4', | ||
url='https://github.com/fredrik-corneliusson/click-web', | ||
author='Fredrik Corneliusson', | ||
author_email='[email protected]', | ||
|
@@ -35,7 +35,7 @@ | |
include_package_data=True, | ||
packages=find_packages(), | ||
zip_safe=False, | ||
python_requires='>=3.6', | ||
python_requires='>=3.8', | ||
install_requires=requirements, | ||
dependency_links=[], | ||
extras_require={ | ||
|
@@ -52,7 +52,9 @@ | |
'Topic :: Utilities', | ||
'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', | ||
'Programming Language :: Python :: 3.11', | ||
] | ||
) |
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