Metadata-Version: 2.1
Name: py-dev-deps
Version: 0.3.1
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.0,<5.0.0)
Requires-Dist: autopep8 (>=1.5.4,<2.0.0)
Requires-Dist: black (>=22.0,<23.0)
Requires-Dist: doc8 (>=0.10.0,<0.11.0)
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.4,<0.14.0)
Requires-Dist: isort (>=5.9.1,<6.0.0)
Requires-Dist: m2r2 (>=0.3.0,<0.4.0)
Requires-Dist: mdformat_myst (>=0.1.4,<0.2.0)
Requires-Dist: mypy (>=0.790,<0.791)
Requires-Dist: pipdeptree (>=1.0.0,<2.0.0)
Requires-Dist: pre-commit (>=2.9.2,<3.0.0)
Requires-Dist: pylint (>=2.6.0,<3.0.0)
Requires-Dist: pytest (>=6.1.2,<7.0.0)
Requires-Dist: pytest-asyncio (>=0.14.0,<0.15.0)
Requires-Dist: pytest-benchmark (>=3.2.3,<4.0.0)
Requires-Dist: pytest-cov (>=2.10.1,<3.0.0)
Requires-Dist: pytest-datadir (>=1.3.1,<2.0.0)
Requires-Dist: pytest-datafiles (>=2.0,<3.0)
Requires-Dist: pytest-freezegun (>=0.4.2,<0.5.0)
Requires-Dist: pytest-mock (>=3.3.1,<4.0.0)
Requires-Dist: pytest-pep8 (>=1.0.6,<2.0.0)
Requires-Dist: pytest-profiling (>=1.7.0,<2.0.0)
Requires-Dist: pytest-randomly (>=3.5.0,<4.0.0)
Requires-Dist: pytest-vcr (>=1.0.2,<2.0.0)
Requires-Dist: pytest-voluptuous (>=1.2.0,<2.0.0)
Requires-Dist: pytest-xdist (>=2.1.0,<3.0.0)
Requires-Dist: readme-renderer[md] (>=31.0,<32.0)
Requires-Dist: requests-mock (>=1.8.0,<2.0.0)
Requires-Dist: setuptools (>=50.3.2,<51.0.0)
Requires-Dist: sphinx-autoapi (>=1.0.0,<2.0.0)
Requires-Dist: sphinx-autodoc-typehints (>=1.0.0,<2.0.0)
Requires-Dist: sphinx-rtd-theme (>=1.0.0,<2.0.0)
Requires-Dist: tox (>=3.20.1,<4.0.0)
Requires-Dist: twine (>=3.2.0,<4.0.0)
Requires-Dist: wheel (>=0.36.0,<0.37.0)
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
```

