Metadata-Version: 2.1
Name: octk
Version: 0.0.4
Summary: Oakley's Common Toolkit
Author: oakla
Keywords: oakley,common,toolkit,octk
Description-Content-Type: text/markdown
Requires-Dist: importlib-resources ; python_version < "3.10"


# My Project

This is a sample project.

## Installation

To install the project, run the following command:

## Usage

To use the project, run the following command:

## Dependencies

### Apps of Direct Interaction
- 

### Inhouse Python Packages
- 

### External Python Packages
-

## Contributing/Development

To contribute to the project, follow these steps:


## File Tree


├── build
│   ├── bdist.win-amd64
│   └── lib
│       └── octk
│           ├── email.py
│           ├── pytree.py
│           ├── readme.py
│           └── __init__.py
├── dev
│   └── email_examples
│       ├── html_body.eml
│       └── plain_text_body.eml
├── dist
│   ├── octk-0.0.3-py3-none-any.whl
│   └── octk-0.0.3.tar.gz
├── init_venv.bat
├── MANIFEST.in
├── pyproject.toml
├── README.md
├── requirements.txt
├── scratch
│   ├── examples.txt
│   └── example_tree_implementations
│       ├── tree_1.py
│       └── tree_2.py
├── src
│   ├── octk
│   │   ├── assets
│   │   │   └── Python.gitignore
│   │   ├── emailer.py
│   │   ├── projectify.py
│   │   ├── pytree.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       ├── email.cpython-310.pyc
│   │       ├── email.cpython-311.pyc
│   │       ├── emailer.cpython-310.pyc
│   │       ├── projectify.cpython-310.pyc
│   │       ├── pytree.cpython-310.pyc
│   │       ├── __init__.cpython-310.pyc
│   │       └── __init__.cpython-311.pyc
│   └── octk.egg-info
│       ├── dependency_links.txt
│       ├── PKG-INFO
│       ├── requires.txt
│       ├── SOURCES.txt
│       └── top_level.txt
└── test
    ├── data
    │   ├── inputs
    │   │   └── test_attachment.txt
    │   ├── output
    │   └── outputs
    │       └── plain_text_body.eml
    ├── test_email.py
    └── test_gitignore_writer.py

19 directories, 37 files
