Metadata-Version: 2.1
Name: check-spyder
Version: 0.10
Summary: Library to detect if you are using Spyder IDE or not.
Home-page: https://github.com/javierzurdo/Check_Spyder
Author: Javier S. Zurdo
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## What is it?
Simple library to test if python script is running in Spyder IDE

## Instalation
pip install check_spyder

## Dependencies
os

## License
MIT License

## Documentation
from check_spyder import Check_Spyder
check = Check_Spyder().is_spyder

Returns True if Spyder is present or False if not.
