Metadata-Version: 2.4
Name: xraw
Version: 0.1.0
Summary: Starter Python library for xraw.
Author: Rajiv Sharma
License-Expression: MIT
Project-URL: Homepage, https://github.com/rajivsharma/xraw
Project-URL: Issues, https://github.com/rajivsharma/xraw/issues
Keywords: xraw
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# xraw

`xraw` is a starter Python package.

## Install locally

```bash
python -m pip install -e .
```

## Use

```python
import xraw

print(xraw.__version__)
```

From the command line:

```bash
xraw --version
```

## Build for PyPI

Install build tools:

```bash
python -m pip install --upgrade build twine
```

Build the distributions:

```bash
python -m build
```

Upload to TestPyPI first:

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

Then upload to PyPI:

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