Metadata-Version: 2.1
Name: loka-lang
Version: 0.2.0
Summary: Un langage de programmation moderne pour l'IA
Home-page: https://github.com/cedric202012/loka
Author: LOKA Developer
Author-email: LOKA Developer <loka.dev@example.com>
License: MIT License
        
        Copyright (c) 2025 LOKA Programming Language
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/cedric202012/loka
Project-URL: Repository, https://github.com/cedric202012/loka.git
Keywords: programming-language,AI,machine-learning
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: llvmlite>=0.40.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: scikit-learn>=1.0.0

# LOKA Programming Language

LOKA est un langage de programmation moderne, open source, conçu pour être simple à apprendre tout en offrant des performances exceptionnelles, particulièrement pour l'IA et le machine learning.

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Caractéristiques

- **Multilingue** : Syntaxe disponible en français et en anglais
- **Haute Performance** : Optimisations LLVM de niveau 3
- **Calcul Matriciel** : Support natif des opérations matricielles
- **IA Intégrée** : Bibliothèques d'IA et ML préinstallées
- **Visualisation** : Outils de visualisation de données intégrés

## Installation

```bash
pip install loka-lang
```

## Exemple Rapide

```python
# Hello World en LOKA
fonction main() {
    affiche("Bonjour depuis LOKA!")
}
```

## Documentation

Visitez notre [documentation complète](https://loka-lang.org/docs) pour :
- Guide de démarrage
- Tutoriels
- Référence API
- Exemples

## Contribution

Nous accueillons toutes les contributions ! Voir [CONTRIBUTING.md](CONTRIBUTING.md) pour les détails.

## Structure du Projet

```
loka/
├── src/                # Code source
│   ├── lexer.py       # Analyseur lexical
│   ├── parser.py      # Analyseur syntaxique
│   ├── matrix.py      # Support matriciel
│   └── ai_lib.py      # Bibliothèque IA
├── examples/          # Exemples de code
├── tests/            # Tests unitaires
└── docs/             # Documentation
```

## Licence

Ce projet est sous licence MIT - voir le fichier [LICENSE](LICENSE) pour plus de détails.

## Communauté

- [Discord](https://discord.gg/loka)
- [Forum](https://forum.loka-lang.org)
- [Twitter](https://twitter.com/LokaLang)

## Remerciements

Merci à tous nos contributeurs qui rendent ce projet possible !
