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
credentials.json
docs/JOURNAL.md
# Données de test
test_files/

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2025 Atmo France
Copyright (c) 2025 Mathdatech
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -21,6 +21,9 @@ exclude .gitignore
exclude credentials.json
exclude *.pyc
exclude .git*
exclude .claude*
exclude archives*
exclude export*
exclude *.log
exclude .pytest_cache
exclude .mypy_cache

File diff suppressed because it is too large Load diff

View file

@ -28,7 +28,6 @@ atmo-data-wrapper/
│ ├── constants.py # Constantes et configurations
│ ├── utils.py # Fonctions utilitaires
│ └── exceptions.py # Exceptions personnalisées
├── archives/ # Anciens scripts (historique)
├── examples/ # Scripts d'exemples
│ ├── __init__.py
│ ├── 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"
license = {file = "LICENSE"}
authors = [
{name = "Atmo Data Wrapper Team", email = "contact@atmo-france.org"}
{name = "Mathdatech Team", email = "mathdatech@mathdatech.fr"}
]
maintainers = [
{name = "Atmo Data Wrapper Team", email = "contact@atmo-france.org"}
{name = "Mathdatech Team", email = "mathdatech@mathdatech.fr"}
]
keywords = [
"atmo",
@ -63,10 +63,10 @@ docs = [
]
[project.urls]
Homepage = "https://github.com/atmo-france/atmo-data-wrapper"
Documentation = "https://github.com/atmo-france/atmo-data-wrapper/blob/main/docs/README.md"
Repository = "https://github.com/atmo-france/atmo-data-wrapper"
Issues = "https://github.com/atmo-france/atmo-data-wrapper/issues"
Homepage = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper"
Documentation = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/src/branch/main/docs/README.md"
Repository = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper"
Issues = "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/issues"
"API Documentation" = "https://admindata.atmo-france.org/api/doc/v2"
"Atmo France" = "https://www.atmo-france.org"

View file

@ -20,15 +20,15 @@ def get_version():
setup(
name="atmo-data-wrapper",
version=get_version(),
author="Atmo Data Wrapper Team",
author_email="contact@atmo-france.org",
author="Mathdatech Team",
author_email="mathdatech@mathdatech.fr",
description="Wrapper Python pour l'API Atmo Data",
long_description=long_description,
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={
"Bug Tracker": "https://github.com/atmo-france/atmo-data-wrapper/issues",
"Documentation": "https://github.com/atmo-france/atmo-data-wrapper/blob/main/docs/README.md",
"Bug Tracker": "https://git.mathdatech.fr/mathdatech/py_atmo_data_wrapper/issues",
"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",
"Atmo France": "https://www.atmo-france.org"
},