This commit is contained in:
François Boulogne 2025-06-25 11:31:55 +02:00
parent 7a3e31c903
commit 1441a44690
5 changed files with 40 additions and 2 deletions

26
RELEASE.md Normal file
View file

@ -0,0 +1,26 @@
bumpver update --major # MAJOR (breaking changes) 1.0.0 → 2.0.0
bumpver update --minor # MINOR (nouvelles fonctionnalités) 1.0.0 → 1.1.0
bumpver update --patch # PATCH (correctifs) 1.0.0 → 1.0.1
bumpver update --pre alpha # Version alpha (1.0.0a1) 1.0.0 → 1.0.0a1
bumpver update --pre beta # Version beta (1.0.0b1) 1.0.0 → 1.0.0b1
bumpver update --pre rc # Version release candidate (1.0.0rc1) 1.0.0 → 1.0.0rc1
* Build
```
python -m build
```
* Check
```
twine check dist/*
```
* Push to pipy
```
twine upload dist/*
```

9
TODO.txt Normal file
View file

@ -0,0 +1,9 @@
# Matplotlib
* nom de fonction à introduire
* Unités
* * en \star

View file

@ -1 +1 @@
__version__ = '0.1.0'
__version__ = "0.1.0"

View file

@ -53,6 +53,10 @@ testpaths = ["tests"]
python_files = "test_*.py"
pythonpath = ["."]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
source = ["optifik"]
omit = ["optifik/tests/*"]

View file

@ -19,7 +19,6 @@ dependencies = [
packages = ["optifik"]
[project.urls]
Homepage = "https://github.com/votrecompte/votreprojet"
Documentation = "https://github.com/votrecompte/votreprojet#readme"