Metadata-Version: 2.1
Name: zxvcv.util
Version: 0.2.1
Summary: Toolbox for other projects
Author: Pawel Piskorz
Author-email: ppiskorz0@gmail.com
License: MIT License
Keywords: toolbox,tool
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Requires-Python: <4.0.0,>=3.7.0
Description-Content-Type: text/markdown
License-File: LICENSE

# zxvcv.util
Toolbox for other projects.

# Build
Build all with single command run:
```
tox
```

Build wheel for specific python:
```
tox -e py37
tox -e py38
tox -e py39
tox -e py310
tox -e py311
```

# Publish
> require tokens for pypi and testpypi in ~/.pypirc file

### publish on pypi
```
tox -e publish
```

### publish on testpypi
```
tox -e publish-test
```

Changelog
=========

0.2.1 (2023-02-15)
------------------
- Add support for pythons 3.7 3.8 3.9.

0.2.0 (2023-02-14)
------------------
- Updates in setup.cfg.
- Generating whl for pythons 3.10 and 3.11.

0.1.8 (2023-02-13)
------------------
- Executable could be seen fro importing as zxvcv.util.Executable.

0.1.7 (2023-02-12)
------------------
- General package setup updates.

0.1.3 (2023-02-12)
------------------
- General updates for LogManager, ArgsManages.
- Add Executable class.
- Add checkout, pull methods in Git class.

0.1.2 (2023-02-01)
------------------
- Add ADict class.
- Add Git and git.FileStatus class.

0.1.1 (2022-10-02)
------------------
- Add context_cwd to Path submodule.

0.1.0 (2022-09-22)
------------------
- Initial commit.
