Metadata-Version: 2.1
Name: BD103
Version: 0.0.2
Summary: Personal Package by BD103
Home-page: https://repl.it/@BD103/BD103-Python-Package
Author: BD103
Author-email: dont@stalk.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# BD103's Personal Coding Package
A bunch of random developer related functions and modules that I use.
## Patch Notes
### 0.0.2
Emptied `__init__.py` to fix error. Updated `setup.py` and redid `README.md`.
### 0.0.1
Initial package. Used a sample color formatting package that I made.
```python
''' Functions '''
color(text, color) # Prints with text then resets formatting
paint(color) # Sets color permanently until reset

''' Colors '''
reset = "reset
red = "red"
yellow = "yellow"
green = "green"
cyan = "cyan"
blue = "blue"
magenta = "magenta"
black = "black"
white = "white"
```

