Remove files from repository

This commit is contained in:
mathieu 2025-07-14 21:24:55 +02:00
parent 3feccb41a4
commit 9b62ffd3f7
7 changed files with 20 additions and 1450 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
# Fichiers de credentials # Fichiers de credentials
credentials.json credentials.json
docs/JOURNAL.md
# Données de test # Données de test
test_files/ test_files/

View file

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2025 Atmo France Copyright (c) 2025 Mathdatech
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 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 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. SOFTWARE.

View file

@ -21,9 +21,12 @@ exclude .gitignore
exclude credentials.json exclude credentials.json
exclude *.pyc exclude *.pyc
exclude .git* exclude .git*
exclude .claude*
exclude archives*
exclude export*
exclude *.log exclude *.log
exclude .pytest_cache exclude .pytest_cache
exclude .mypy_cache exclude .mypy_cache
exclude build exclude build
exclude dist exclude dist
exclude *.egg-info exclude *.egg-info

File diff suppressed because it is too large Load diff

View file

@ -28,7 +28,6 @@ atmo-data-wrapper/
│ ├── constants.py # Constantes et configurations │ ├── constants.py # Constantes et configurations
│ ├── utils.py # Fonctions utilitaires │ ├── utils.py # Fonctions utilitaires
│ └── exceptions.py # Exceptions personnalisées │ └── exceptions.py # Exceptions personnalisées
├── archives/ # Anciens scripts (historique)
├── examples/ # Scripts d'exemples ├── examples/ # Scripts d'exemples
│ ├── __init__.py │ ├── __init__.py
│ ├── example_usage.py # Exemples d'utilisation des endpoints │ ├── example_usage.py # Exemples d'utilisation des endpoints

View file

@ -9,10 +9,10 @@ description = "Wrapper Python pour l'API Atmo Data"
readme = "docs/README.md" readme = "docs/README.md"
license = {file = "LICENSE"} license = {file = "LICENSE"}
authors = [ authors = [
{name = "Atmo Data Wrapper Team", email = "contact@atmo-france.org"} {name = "Mathdatech Team", email = "mathdatech@mathdatech.fr"}
] ]
maintainers = [ maintainers = [
{name = "Atmo Data Wrapper Team", email = "contact@atmo-france.org"} {name = "Mathdatech Team", email = "mathdatech@mathdatech.fr"}
] ]
keywords = [ keywords = [
"atmo", "atmo",
@ -63,10 +63,10 @@ docs = [
] ]
[project.urls] [project.urls]
Homepage = "https://github.com/atmo-france/atmo-data-wrapper" Homepage = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper"
Documentation = "https://github.com/atmo-france/atmo-data-wrapper/blob/main/docs/README.md" Documentation = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/src/branch/main/docs/README.md"
Repository = "https://github.com/atmo-france/atmo-data-wrapper" Repository = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper"
Issues = "https://github.com/atmo-france/atmo-data-wrapper/issues" Issues = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/issues"
"API Documentation" = "https://admindata.atmo-france.org/api/doc/v2" "API Documentation" = "https://admindata.atmo-france.org/api/doc/v2"
"Atmo France" = "https://www.atmo-france.org" "Atmo France" = "https://www.atmo-france.org"
@ -141,4 +141,4 @@ exclude = [
".venv", ".venv",
".mypy_cache", ".mypy_cache",
".pytest_cache" ".pytest_cache"
] ]

View file

@ -20,15 +20,15 @@ def get_version():
setup( setup(
name="atmo-data-wrapper", name="atmo-data-wrapper",
version=get_version(), version=get_version(),
author="Atmo Data Wrapper Team", author="Mathdatech Team",
author_email="contact@atmo-france.org", author_email="mathdatech@mathdatech.fr",
description="Wrapper Python pour l'API Atmo Data", description="Wrapper Python pour l'API Atmo Data",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/atmo-france/atmo-data-wrapper", url="https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper",
project_urls={ project_urls={
"Bug Tracker": "https://github.com/atmo-france/atmo-data-wrapper/issues", "Bug Tracker": "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/issues",
"Documentation": "https://github.com/atmo-france/atmo-data-wrapper/blob/main/docs/README.md", "Documentation": "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/src/branch/main/docs/README.md",
"API Documentation": "https://admindata.atmo-france.org/api/doc/v2", "API Documentation": "https://admindata.atmo-france.org/api/doc/v2",
"Atmo France": "https://www.atmo-france.org" "Atmo France": "https://www.atmo-france.org"
}, },
@ -93,4 +93,4 @@ setup(
"emissions" "emissions"
], ],
zip_safe=False, zip_safe=False,
) )