Metadata-Version: 2.4
Name: gitads-pypi
Version: 0.1.0
Summary: A simple Hello World PyPI package
Home-page: https://github.com/yourusername/gitads-pypi
Author: Your Name
Author-email: Salman Qureshi <salman@cosmicstack.org>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/gitads-pypi
Project-URL: Repository, https://github.com/yourusername/gitads-pypi
Project-URL: Issues, https://github.com/yourusername/gitads-pypi/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# gitads-pypi

A simple "Hello World" PyPI package for demonstration purposes.

## Installation

```bash
pip install gitads-pypi
```

## Usage

### As a Python module

```python
from gitads_pypi import hello_world

print(hello_world())
```

### As a command line tool

```bash
gitads-hello
```

## Development

### Setup

```bash
git clone https://github.com/yourusername/gitads-pypi.git
cd gitads-pypi
pip install -e .
```

### Building

```bash
python -m build
```

### Publishing

```bash
python -m twine upload dist/*
```

## License

MIT License - see LICENSE file for details.
```

```text:LICENSE
MIT License

Copyright (c) 2024 Your Name

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

```text:MANIFEST.in
include README.md
include LICENSE
include requirements.txt
recursive-include gitads_pypi *.py
```

```text:requirements.txt
# Add your package dependencies here
# Example:
# requests>=2.25.0
```

```text:.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db
```

To build and test your package:

```bash
pip install build twine
```

```bash
python -m build
```

```bash
pip install -e .
```

```bash
gitads-hello
