Metadata-Version: 2.4
Name: seekx
Version: 0.1.0
Summary: seekx Python package (placeholder — extend as needed).
Author: seekx contributors
License-Expression: MIT
License-File: LICENSE
Keywords: seekx
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# seekx

Placeholder packages for PyPI (`seekx`) and npm (`seekx`). Replace the stubs with your library code and bump versions before publishing.

## Python (PyPI)

```bash
cd /path/to/seekx
python -m pip install build twine
python -m build
twine upload dist/*
```

Configure [PyPI API token](https://pypi.org/manage/account/token/) when prompted.

## JavaScript (npm)

```bash
cd /path/to/seekx
npm login
npm publish --access public
```

Scoped names (`@scope/seekx`) need `--access public` on first publish; unscoped `seekx` is public by default.

## Repository layout

- `src/seekx/` — Python package
- `pyproject.toml` — Python build metadata
- `index.js` — npm entry
- `package.json` — npm metadata
