Metadata-Version: 2.1
Name: depend
Version: 0.3.0
Summary: A dependency analysis tool for various languages and package managers.
Home-page: https://github.com/deepsourcelabs/depend
Author: Noble Saji Mathews
Author-email: ch19b023@iittp.ac.in
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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 :: Implementation :: CPython
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4 (==4.10.0)
Requires-Dist: PyGithub (==1.55)
Requires-Dist: pytest (==6.2.5)
Requires-Dist: pytest-cov (==3.0.0)
Requires-Dist: typer (==0.4.1)
Requires-Dist: rich (==12.5.1)
Requires-Dist: loguru (==0.6.0)
Requires-Dist: deepdiff (==5.8.1)
Requires-Dist: poetry (==1.1.13)
Requires-Dist: toml (==0.10.2)
Requires-Dist: pyarn (==0.1.2)
Requires-Dist: PyYAML (==6.0)
Requires-Dist: jsonschema (==4.4.0)
Requires-Dist: python-dotenv (==0.19.2)
Requires-Dist: dparse2 (==0.6.0)
Requires-Dist: pytest-dependency (==0.5.1)
Requires-Dist: pytest-asyncio (==0.19.0)
Requires-Dist: xmltodict (==0.12.0)
Requires-Dist: packaging (<21,>=20.9)
Requires-Dist: httpx (==0.23.0)
Provides-Extra: dev
Requires-Dist: black (==22.12.0) ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: pytest-watch ; extra == 'dev'
Requires-Dist: pytest-testmon ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: mkdocstrings[python] ; extra == 'dev'
Requires-Dist: mkdocs-material ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocstrings[python] ; extra == 'docs'
Requires-Dist: mkdocs-material ; extra == 'docs'

# depend

A dependency analysis tool for various languages and package managers.

## Local Development / Testing

- Create and activate a virtual environment
- Run `pip install -r requirements-dev.txt` to do an editable install
- Run `pytest` to run tests

```bash
pytest-watch --runner='coverage run --rcfile=.coveragerc.local -m pytest --testmon' \
  --onfail="notify-send --urgency=low -i error 'Tests Failed'" \
  --onpass="coverage html --skip-covered"
```
terminal-notifier -message 
## Type Checking

Run `mypy .`

## Create and upload a package to PyPI

Make sure to bump the version in `setup.cfg`.

Then run the following commands:

```bash
rm -rf build dist
python setup.py sdist bdist_wheel
```

Then upload it to PyPI using [twine](https://twine.readthedocs.io/en/latest/#installation):

```bash
twine upload dist/*
```
