Remove files from repository
This commit is contained in:
parent
3feccb41a4
commit
9b62ffd3f7
7 changed files with 20 additions and 1450 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
# Fichiers de credentials
|
||||
credentials.json
|
||||
docs/JOURNAL.md
|
||||
|
||||
# Données de test
|
||||
test_files/
|
||||
|
|
4
LICENSE
4
LICENSE
|
@ -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
|
||||
|
@ -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
|
||||
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
|
||||
SOFTWARE.
|
||||
SOFTWARE.
|
||||
|
|
|
@ -21,9 +21,12 @@ exclude .gitignore
|
|||
exclude credentials.json
|
||||
exclude *.pyc
|
||||
exclude .git*
|
||||
exclude .claude*
|
||||
exclude archives*
|
||||
exclude export*
|
||||
exclude *.log
|
||||
exclude .pytest_cache
|
||||
exclude .mypy_cache
|
||||
exclude build
|
||||
exclude dist
|
||||
exclude *.egg-info
|
||||
exclude *.egg-info
|
||||
|
|
1433
docs/JOURNAL.md
1433
docs/JOURNAL.md
File diff suppressed because it is too large
Load diff
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
@ -141,4 +141,4 @@ exclude = [
|
|||
".venv",
|
||||
".mypy_cache",
|
||||
".pytest_cache"
|
||||
]
|
||||
]
|
||||
|
|
12
setup.py
12
setup.py
|
@ -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"
|
||||
},
|
||||
|
@ -93,4 +93,4 @@ setup(
|
|||
"emissions"
|
||||
],
|
||||
zip_safe=False,
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue