Metadata-Version: 2.1
Name: depend
Version: 0.2.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.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4 (==4.10.0)
Requires-Dist: PyGithub (==1.55)
Requires-Dist: requests-cache (==0.9.1)
Requires-Dist: pytest (==6.2.5)
Requires-Dist: responses (==0.17.0)
Requires-Dist: pytest-cov (==3.0.0)
Requires-Dist: jmespath (==0.10.0)
Requires-Dist: typer (==0.4.1)
Requires-Dist: rich (==12.5.1)
Requires-Dist: coloredlogs (==15.0.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: xmltodict (==0.12.0)
Requires-Dist: requests (~=2.28.1)
Requires-Dist: packaging
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: coverage ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'

# 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

## 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/*
```
