Metadata-Version: 2.1
Name: depscanner
Version: 0.3
Summary: Python Dependency Scanner
Author: nickdecodes
Author-email: nickdecodes <nickdecodes@163.com>
Project-URL: Documentation, http://python-depscanner.readthedocs.io
Project-URL: Source, https://github.com/nickdecodes/python-depscanner
Keywords: depscanner,python,dependency
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# DepScanner
Python Dependency Scanner is A simple dependency analysis kit

```python
>>> from depscanner import DependencyScanner
>>> t = DependencyScanner()
>>> project_result = t.scan_project()
>>> pipenv_result = t.scan_pipenv()
>>>
```

# Installing DepScanner and Supported Versions
DepScanner is available on PyPI:
```bash
python -m pip install depscanner
```
DepScanner officially supports Python 3.6+.

# API Reference and User Guide available on Read the Docs
[Documentation](http://python-depscanner.readthedocs.io)
