Skip to content
Snippets Groups Projects
Commit c065a8aa authored by BIRK Renaud's avatar BIRK Renaud
Browse files

Ajout d'un installateur

parent f974ee1b
Branches
No related tags found
No related merge requests found
......@@ -11,6 +11,5 @@ et le projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Ajout de l'OCR.
- Ajout de l'identification.
- Ajout de la base de données.
- Ajout de l'interface.
- Ajout d'un fichier de test.
MIT License
Copyright (c) 2023 ALAPETITE Nino, AOUAD Mohamed Jad, ARIFA Mohamed Salim, BERRADA Rania, BIRK Renaud, BRETÉCHÉ Youenn, CHEUCLE Antoine, GOLDET Frantz, JEMLI Wassel, LAVENAN Kilian, LEFEVRE Antoine, PARION Arnaud, RABIER Nathan
Copyright (c) 2023 ALAPETITE Nino, AOUAD Mohamed Jad, ARIFA Mohamed Salim, BERRADA Rania, BIRK Renaud, BRETÉCHÉ Youenn, CHEUCLE Antoine, GOLDET Franz, JEMLI Wassel, LAVENAN Kilian, LEFEVRE Antoine, PARION Arnaud, RABIER Nathan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
......
......@@ -67,7 +67,7 @@ Si vous avez toujours voulu contribuer à l'open source et à une grande cause,
- BIRK Renaud
- BRETÉCHÉ Youenn
- CHEUCLE Antoine
- GOLDET Frantz
- GOLDET Franz
- JEMLI Wassel
- LAVENAN Kilian
- LEFEVRE Antoine
......
......@@ -4,10 +4,9 @@ ou prothèse à partir des informations présentes sur son emballage.
"""
__all__ = [
"DB", "Dispositif", "Group", "Identification", "OCR", "UI"
"Dispositif", "Group", "Identification", "OCR", "UI"
]
from ._db import DB
from ._identification import Identification
from ._models import Dispositif, Group
from ._ocr import OCR
......
class DB:
"""
Classe de gestion de la base de données
@author: Groupe 7
"""
def __init__(self) -> None:
pass
\ No newline at end of file
from ._models import *
from typing import List
from typing import List, Tuple
class Identification:
"""
......
from typing import List, Tuple
from typing import List
class Group:
"""
......
from tkinter import *
from ._models import Dispositif
class UI:
"""
......
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='poc',
version='1.0',
description='Proposer une solution numérique permettant d’identifier tout implant ou prothèse à partir des informations présentes sur son emballage.',
license="MIT",
long_description=long_description,
author='ALAPETITE Nino, AOUAD Mohamed Jad, ARIFA Mohamed Salim, BERRADA Rania, BIRK Renaud, BRETÉCHÉ Youenn, CHEUCLE Antoine, GOLDET Franz, JEMLI Wassel, LAVENAN Kilian, LEFEVRE Antoine, PARION Arnaud, RABIER Nathan',
author_email='nino.alapetite@imt-atlantique.net, mohamed-jad.aouad@imt-atlantique.net, mohamed-salim.arifa@imt-atlantique.net, rania.berrada@imt-atlantique.net; renaud.birk@imt-atlantique.net, youenn.breteche@imt-atlantique.net, antoine.cheucle@imt-atlantique.net, franz.goldet@imt-atlantique.net, wassel.jemli@imt-atlantique.net, kilian.lavenan@imt-atlantique.net, antoine.lefevre@imt-atlantique.net, arnaud.parion@imt-atlantique.net, nathan.rabier@imt-atlantique.net',
url="https://gitlab.imt-atlantique.fr/PC-AP-INT446-N-2023/Hacking-Health/int-hack-groupe7",
packages=['poc'],
install_requires=['paddleocr', 'tkinter']
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment