Metadata-Version: 2.1
Name: py-dev-deps
Version: 0.5.0
Summary: A package for common python development dependencies
Home-page: https://github.com/dazza-codes/py-dev-deps
License: Apache 2.0
Keywords: Development Status :: 2 - Pre-Alpha,Intended Audience :: Developers,Operating System :: OS Independent,Programming Language :: Python :: 3,Topic :: Utilities
Author: Darren Weber
Author-email: dweber.consulting@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: Sphinx (>=5.0,<6.0)
Requires-Dist: autopep8 (>=2.0,<3.0)
Requires-Dist: black (>=22.0,<23.0)
Requires-Dist: doc8
Requires-Dist: flake8 (>=5.0,<6.0)
Requires-Dist: ipdb
Requires-Dist: isort (>=5.0,<6.0)
Requires-Dist: m2r2
Requires-Dist: mdformat_myst
Requires-Dist: mypy
Requires-Dist: pipdeptree (>=2.0,<3.0)
Requires-Dist: pre-commit (>=2.0,<3.0)
Requires-Dist: pylint (>=2.0,<3.0)
Requires-Dist: pytest (>=7.0,<8.0)
Requires-Dist: pytest-asyncio
Requires-Dist: pytest-benchmark (>=4.0,<5.0)
Requires-Dist: pytest-cov (>=4.0,<5.0)
Requires-Dist: pytest-datadir (>=1.0,<2.0)
Requires-Dist: pytest-datafiles (>=2.0,<3.0)
Requires-Dist: pytest-freezegun
Requires-Dist: pytest-mock (>=3.0,<4.0)
Requires-Dist: pytest-pep8 (>=1.0,<2.0)
Requires-Dist: pytest-profiling (>=1.0,<2.0)
Requires-Dist: pytest-randomly (>=3.0,<4.0)
Requires-Dist: pytest-vcr (>=1.0,<2.0)
Requires-Dist: pytest-voluptuous (>=1.0,<2.0)
Requires-Dist: pytest-xdist (>=3.0,<4.0)
Requires-Dist: readme-renderer[md] (>=37.0,<38.0)
Requires-Dist: requests-mock (>=1.0,<2.0)
Requires-Dist: setuptools
Requires-Dist: sphinx-autoapi (>=2.0,<3.0)
Requires-Dist: sphinx-autodoc-typehints (>=1.0,<2.0)
Requires-Dist: sphinx-rtd-theme (>=1.0,<2.0)
Requires-Dist: tox
Requires-Dist: twine (>=4.0,<5.0)
Requires-Dist: wheel
Project-URL: Repository, https://github.com/dazza-codes/py-dev-deps.git
Description-Content-Type: text/markdown

# py-dev-deps

A project that only manages python development dependencies

The aim of this project is to provide a common denominator for python development dependencies
in one package that can be added as a development dependency to other projects.  By using
poetry to resolve and maintain a common set of compatible development dependencies, it may
help to reduce the burdens of package installations for projects using this project as a
development dependency.

## Install

See [INSTALL](INSTALL.md) for more details; the following should work; note that
the intention is to use this package only for development dependencies.

#### poetry

```sh
poetry add -D 'py-dev-deps'
```

#### pip

```sh
cat >> dev-requirements.txt <<EOF
py-dev-deps
EOF

pip install -r dev-requirements.txt
```

