py.lib.aw_config
4:cafe05bbad21 Browse Files
. Разбираемся с зависимостями
pyproject.toml setup.py tools/make_pkg.sh
1.1 --- a/pyproject.toml Sun May 05 11:32:45 2024 +0300 1.2 +++ b/pyproject.toml Sun May 05 14:40:01 2024 +0300 1.3 @@ -3,13 +3,11 @@ 1.4 requires = ["setuptools", "wheel"] # PEP 508 specifications. 1.5 1.6 [project] 1.7 -name = "aw_config" 1.8 -version = "0.202405.8" 1.9 -description = "Модуль поддержки процесса конфигурирования приложения" 1.10 +dynamic = ["version", "description", "name"] 1.11 #readme = "README.md" 1.12 requires-python = ">=3.9" 1.13 dependencies = [ 1.14 - "toml>=0.10.2" 1.15 + "toml >= 0.10.2" 1.16 ] 1.17 1.18 [project.urls]
2.1 --- a/setup.py Sun May 05 11:32:45 2024 +0300 2.2 +++ b/setup.py Sun May 05 14:40:01 2024 +0300 2.3 @@ -3,9 +3,12 @@ 2.4 2.5 setup( 2.6 name='aw_config', 2.7 - version='0.202405.8', 2.8 + version='0.202405.11', 2.9 packages=['aw_config'], 2.10 package_dir={'aw_config': 'src/aw_config'}, 2.11 + install_requires=[ 2.12 + "toml>=0.10.2", 2.13 + ], 2.14 url='https://devel.a0fs.ru/py.lib.aw_config', 2.15 license='BSD', 2.16 author='awgur',
3.1 --- a/tools/make_pkg.sh Sun May 05 11:32:45 2024 +0300 3.2 +++ b/tools/make_pkg.sh Sun May 05 14:40:01 2024 +0300 3.3 @@ -1,5 +1,5 @@ 3.4 #!/bin/sh 3.5 -# devel.a0fs.ru -- devel.python.tools:make_pkg.sh -- v0.r202405.1 3.6 +# devel.a0fs.ru -- devel.python.tools:make_pkg.sh -- v0.r202405.2 3.7 this_dir="$(dirname "$(readlink -f "$0")")" 3.8 this_pkg="$(dirname "$this_dir")" 3.9 3.10 @@ -8,4 +8,4 @@ 3.11 . "${this_pkg}/.e/bin/activate" 3.12 fi 3.13 3.14 -python3 setup.py bdist_wheel 3.15 +python3 setup.py bdist_wheel --build-number "$(date '+%d%H%M%S')"