Metadata-Version: 2.1
Name: chiklisp-stdlib
Version: 0.1.1
Summary: Chiklisp `.clib` standard library files
Author-email: Richard Kiss <him@richardkiss.com>
License: Copyright 2023 by Richard Kiss
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
        
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# chiklisp_stdlib

Use:

`pip install chiklisp_stdlib`

To get the path to the include files, use

```python
from chiklisp_stdlib import NIGHTLY_INCLUDE_DIRECTORY
from chiklisp_stdlib import STABLE_INCLUDE_DIRECTORY
```

Note that `*_INCLUDE_DIRECTORY` is a `pathlib.Path` and not a `str`, so if your API expects `str`-based paths, use `str(path)` to convert.

And upgrade your API: see [PEP519](https://peps.python.org/pep-0519/). C'mon, it's 2023 (as of this writing).
