Metadata-Version: 2.1
Name: py-dev-deps
Version: 0.4.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.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Sphinx (>=4.0,<5.0)
Requires-Dist: autopep8 (>=1.5.4,<2.0.0)
Requires-Dist: black (>=22.0,<23.0)
Requires-Dist: doc8
Requires-Dist: flake8 (>=3.8.4,<4.0.0)
Requires-Dist: flake8-type-annotations (>=0.1.0,<0.2.0)
Requires-Dist: ipdb (>=0.13,<0.14)
Requires-Dist: isort (>=5.9.1,<6.0.0)
Requires-Dist: m2r2 (>=0.3,<0.4)
Requires-Dist: mdformat_myst (>=0.1,<0.2)
Requires-Dist: mypy (>=0.790,<0.791)
Requires-Dist: pipdeptree (>=2.0,<3.0)
Requires-Dist: pre-commit (>=2.9.2,<3.0.0)
Requires-Dist: pylint (>=2.6.0,<3.0.0)
Requires-Dist: pytest (>=7.0,<8.0)
Requires-Dist: pytest-asyncio (>=0.18.0,<0.19.0)
Requires-Dist: pytest-benchmark (>=3.0,<4.0)
Requires-Dist: pytest-cov (>=2.0,<3.0)
Requires-Dist: pytest-datadir (>=1.3,<2.0)
Requires-Dist: pytest-datafiles (>=2.0,<3.0)
Requires-Dist: pytest-freezegun (>=0.4.2,<0.5.0)
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 (>=2.0,<3.0)
Requires-Dist: readme-renderer[md] (>=35.0,<36.0)
Requires-Dist: requests-mock (>=1.0,<2.0)
Requires-Dist: setuptools
Requires-Dist: sphinx-autoapi (>=1.0,<2.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
```

