...and `m_lib.defenc` to `m_lib_defenc`.
-m_lib.full requires Python 2.7 or 3.4+.
+m_lib_full requires Python 2.7 or 3.4+.
Installation script setup.py requires setuptools.
Installation script setup.py requires setuptools.
- sudo pip install m_lib.full
+ sudo pip install m_lib_full
- pip install --user m_lib.full
+ pip install --user m_lib_full
Installation from sources:
Installation from sources:
python setup.py install --user
python setup.py install --user
-Option '--user' installs m_lib.full into
+Option '--user' installs m_lib_full into
$HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
automatically.
$HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
automatically.
License: GPL.
This a full namespace meta-package that installs all parts of m_lib library
License: GPL.
This a full namespace meta-package that installs all parts of m_lib library
-(currently m_lib and m_lib.defenc).
+(currently m_lib and m_lib_defenc).
python setup.py build &&
python setup.py sdist &&
python setup.py build &&
python setup.py sdist &&
-rv=$(python setup.py --version)
-if [ -f dist/m_lib.full-$rv.tar.gz ]; then
- cd dist &&
- mv m_lib.full-$rv.tar.gz m_lib_full-$rv.tar.gz &&
- cd ..
-fi &&
-
find build -name '*.py[co]' -delete &&
python setup.py bdist_wheel --universal &&
twine upload --disable-progress-bar --skip-existing dist/* &&
find build -name '*.py[co]' -delete &&
python setup.py bdist_wheel --universal &&
twine upload --disable-progress-bar --skip-existing dist/* &&
-exec rm -rf build dist m_lib.full.egg-info
+exec rm -rf build dist m_lib_full.egg-info
-git archive --format=tar --prefix=m_lib.full/ "${1:-HEAD}" |
+git archive --format=tar --prefix=m_lib_full/ "${1:-HEAD}" |
(cd "$HOME/tmp" && exec tar xf -) &&
(cd "$HOME/tmp" && exec tar xf -) &&
-cd "$HOME/tmp/m_lib.full" &&
+cd "$HOME/tmp/m_lib_full" &&
python setup.py sdist --formats=bztar &&
python setup.py sdist --formats=bztar &&
-cd dist && mv m_lib.full-*.tar.bz2 ../.. && cd ../.. && exec rm -rf m_lib.full
+cd dist && mv m_lib_full-*.tar.bz2 ../.. && cd ../.. && exec rm -rf m_lib_full
-m_lib >= 3.1.0.post2
-m_lib.defenc >= 1.1.0.post1
+m_lib >= 3.1.2
+m_lib_defenc >= 1.1.1
from setuptools import setup
setup(
from setuptools import setup
setup(
version = "1.0.2",
description = "m_lib full meta-package",
long_description = "Broytman Library for Python, Copyright (C) 1996-2025 PhiloSoft Design",
version = "1.0.2",
description = "m_lib full meta-package",
long_description = "Broytman Library for Python, Copyright (C) 1996-2025 PhiloSoft Design",
url = "https://phdru.name/Software/Python/#m_lib",
project_urls={
'Homepage': 'https://phdru.name/Software/Python/#m_lib',
url = "https://phdru.name/Software/Python/#m_lib",
project_urls={
'Homepage': 'https://phdru.name/Software/Python/#m_lib',
- 'Download': 'https://pypi.org/project/m_lib.full/',
- 'Git repo': 'https://git.phdru.name/m_lib.full.git/',
+ 'Download': 'https://pypi.org/project/m_lib_full/',
+ 'Git repo': 'https://git.phdru.name/m_lib_full.git/',
},
license = "GPL",
classifiers=[
},
license = "GPL",
classifiers=[
packages = ["m_lib"],
namespace_packages = ["m_lib"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
packages = ["m_lib"],
namespace_packages = ["m_lib"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
- install_requires=['m_lib>=3.1.0.post1', 'm_lib.defenc>=1.1'],
+ install_requires=['m_lib>=3.1.2', 'm_lib_defenc>=1.1.1'],