Metadata-Version: 2.1
Name: norminette
Version: 3.3.4
Summary: Open source norminette to apply 42's norme to C files
Home-page: https://github.com/42School/norminette
Author: 42
Author-email: pedago@42.fr
License: MIT License
Keywords: 42,norminette
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# norminette for 42 schools

## Install:

Requires python3.7+ (3.7, 3.8, 3.9)

### Directly inside your global commands

Install using pip.
```shell
python3 -m pip install --upgrade pip setuptools
python3 -m pip install norminette
```

To upgrade an existing install, use
```shell
python3 -m pip install --upgrade norminette
```

### Inside a virtual environment

Using a virtual environment will avoid version conflicts with already globally installed packages.

```shell
python3 -m venv venv
source venv/bin/activate
pip install norminette
```

## Usage

```
norminette
```
Runs on the current folder and any subfolder

```
norminette filename.[c/h]
```
Runs on the given filename(s)

```
norminette -d
```
Prevents stopping on various blocking errors

```
norminette -dd
```
Outputs all the debug logging

## Docker usage

```
docker build -t norminette .
cd ~/42/ft_printf
docker run -v $PWD:/code norminette /code
```

If you encounter an error or an incorrect output, you can:
 - Open an issue on github 
 - Post a message on the dedicated slack channel (#norminette-v3-beta)
    

Please try to include as much information as possible (the file on which it crashed, etc)

Feel free to do pull requests if you want to help as well. Make sure that run_test.sh properly runs after your modifications.


