Metadata-Version: 2.4
Name: arcora
Version: 0.0.1
Summary: Foundational package for the Arcora Python ecosystem.
Author-email: labstokenai-byte <labstokenai@gmail.com>
Maintainer-email: labstokenai-byte <labstokenai@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/arcora-ai/arcora
Project-URL: Repository, https://github.com/arcora-ai/arcora
Project-URL: Issues, https://github.com/arcora-ai/arcora/issues
Keywords: arcora,python-package
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# arcora

`arcora` is the initial published package for the Arcora project.

This repository is intentionally starting with a minimal, real release so the
package name can be claimed on PyPI before broader functionality lands. The
first release exposes only package metadata and version information.

## Install

```bash
pip install arcora
```

## Current API

```python
import arcora

print(arcora.__version__)
```

## First PyPI Release Checklist

1. Create a PyPI account at `https://pypi.org/account/register/`.
2. Enable two-factor authentication and save your recovery codes.
3. Install the packaging tools:

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

4. Build the release artifacts:

```bash
python3 -m build
```

5. Check the artifacts before upload:

```bash
python3 -m twine check dist/*
```

6. Upload to the real PyPI index:

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

After upload succeeds, the package name is reserved on PyPI under your account.
