Metadata-Version: 2.4
Name: dayz-dev-tools
Version: 1.9.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Games/Entertainment :: First Person Shooters
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Dist: pydantic>=2.8.2
Requires-Dist: tomli>=2.0.0 ; python_full_version < '3.11'
Requires-Dist: build==1.3.0 ; extra == 'dev'
Requires-Dist: flake8==7.3.0 ; extra == 'dev'
Requires-Dist: mypy==1.17.1 ; extra == 'dev'
Requires-Dist: pytest==8.4.2 ; extra == 'dev'
Requires-Dist: readthedocs-sphinx-search>=0.3.2 ; extra == 'docs'
Requires-Dist: sphinx>=4.1.2 ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: dev
Provides-Extra: docs
License-File: LICENSE
Summary: Useful tools for DayZ mod developers.
Keywords: dayz,tools,pbo,server
Author-email: Tim Jensen <tim.l.jensen@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Changelog, https://github.com/tjensen/dayz-dev-tools/releases
Project-URL: Homepage, https://dayz-dev-tools.readthedocs.io/
Project-URL: Issues, https://github.com/tjensen/dayz-dev-tools/issues
Project-URL: Repository, https://github.com/tjensen/dayz-dev-tools

# DayZ Dev Tools

This project contains tools and libraries that can be useful for DayZ mod
developers and server owners, including:

* `guid` - Tool for converting 64-bit SteamIDs to DayZ GUIDs
* `pbo` - Tool for creating PBO archives
* `unpbo` - Tool for inspecting PBO archives and extracting their contents
* `run-server` - Tool that makes running DayZ Server easier

More information:

* [Documentation](https://dayz-dev-tools.readthedocs.io/)

## Installation

DayZ Dev Tools is listed on [PyPI](https://pypi.org/project/dayz-dev-tools/). I
highly recommend installing it using [`pipx`](https://pypa.github.io/pipx/) for
command line use:

```
pipx install dayz-dev-tools
```


It can also be installed with `pip` or using your preferred Python package
manager:

```
pip install dayz-dev-tools
```

DayZ Dev Tools can be run on Windows or Linux but Python 3.10 or higher is
required.

