Metadata-Version: 2.4
Name: nys_constants
Version: 0.1.0
Summary: Core constants and enums for the Noyes system
Home-page: https://github.com/noyes/nys_constants
Author: Noyes
Author-email: dev@noyes.com
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# NysConstants

Core constants and enums for the Noyes system.

## Installation

```bash
pip install nys_constants
```

## Usage

```python
from nys_constants.nys_constants import (
    RequestType,
    RequestStatus,
    JobType,
    JobStatus,
    TriggerStatus,
    SortOrder,
    EntityType,
    LogLevel,
    OnEmptySKUAction,
    MeasurementUnit,
    StorageModuleType,
    LevelStatus,
    StorageStatus
)

# Use the enums
request_type = RequestType.FULFILLMENT
job_status = JobStatus.EXECUTING
```

## Development

This package is part of the Noyes monorepo. To install in development mode:

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






