fist commit

This commit is contained in:
Lukian 2024-10-23 11:39:10 +02:00
commit b7d32b1a55
9 changed files with 28 additions and 0 deletions

0
.gitignore vendored Normal file
View file

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# Ultra Mastermind Resolution Implementation in Python
## Installation
- `python -m venv .venv`
- `source .venv/bin/activate`
- `pip install -r requirements.txt`
- `python main.py`
## Documentation
*TODO*

Binary file not shown.

Binary file not shown.

View file

View file

11
main.py Normal file
View file

@ -0,0 +1,11 @@
# fichier d'exemple 'run' du projet
# project libs importations
import lib.ultra_mastermind_obj
import lib.ultra_mastermind_imp
def main() -> None:
pass
if __name__ == "__main__":
main()

0
requirements.txt Normal file
View file

5
tests.py Normal file
View file

@ -0,0 +1,5 @@
# fichier de tests du projet
# project libs importations
import lib.ultra_mastermind_obj
import lib.ultra_mastermind_imp