py.lib.aw_web_tools
7:abfbff81c1fb Browse Files
* Решение проблемы с зависимостями
.hgignore pyproject.toml setup.py tool/make_pkg.sh
1.1 --- a/.hgignore Tue Feb 27 19:29:28 2024 +0300 1.2 +++ b/.hgignore Sun May 05 14:53:52 2024 +0300 1.3 @@ -1,6 +1,6 @@ 1.4 syntax: glob 1.5 .idea/* 1.6 .e/* 1.7 -aw_web_tools.egg-info/* 1.8 build/* 1.9 -dist/* 1.10 \ No newline at end of file 1.11 +dist/* 1.12 +*.egg-info/* 1.13 \ No newline at end of file
2.1 --- a/pyproject.toml Tue Feb 27 19:29:28 2024 +0300 2.2 +++ b/pyproject.toml Sun May 05 14:53:52 2024 +0300 2.3 @@ -7,7 +7,7 @@ 2.4 2.5 [project] 2.6 name = "aw_web_tools" 2.7 -version = "0.202402.3" 2.8 +dynamic = ["version", "description"] 2.9 requires-python = ">=3.8" 2.10 dependencies = [ 2.11 "PyJWT>=2.8.0",
3.1 --- a/setup.py Tue Feb 27 19:29:28 2024 +0300 3.2 +++ b/setup.py Sun May 05 14:53:52 2024 +0300 3.3 @@ -2,8 +2,12 @@ 3.4 3.5 setup( 3.6 name='aw_web_tools', 3.7 - version='0.202402.3', 3.8 + version='0.202405.1', 3.9 packages=['aw_web_tools'], 3.10 + install_requires=[ 3.11 + "PyJWT>=2.8.0", 3.12 + "bottle>=0.12.25", 3.13 + ], 3.14 package_dir={'aw_web_tools': 'src/aw_web_tools'}, 3.15 url='https://devel.a0fs.ru/py.lib.aw_web_tools/', 3.16 author_email='',
4.1 --- a/tool/make_pkg.sh Tue Feb 27 19:29:28 2024 +0300 4.2 +++ b/tool/make_pkg.sh Sun May 05 14:53:52 2024 +0300 4.3 @@ -1,11 +1,11 @@ 4.4 #!/bin/sh 4.5 -# devel.a0fs.ru -- devel:python.tools::make_pkg.sh -- v0.r202402.2 4.6 +# devel.a0fs.ru -- devel:python.tools::make_pkg.sh -- v0.r202405.2 4.7 this_dir="$(dirname "$(readlink -f "$0")")" 4.8 this_pkg="$(dirname "$this_dir")" 4.9 4.10 cd "${this_pkg}" || exit 4.11 if [ -d "${this_pkg}/.e" ] ; then 4.12 - source ${this_pkg}/.e/bin/activate 4.13 + . "${this_pkg}/.e/bin/activate" 4.14 fi 4.15 4.16 -python3 setup.py bdist_wheel 4.17 \ No newline at end of file 4.18 +python3 setup.py bdist_wheel --build-number "$(date '+%d%H%M%S')" 4.19 \ No newline at end of file