upda
This commit is contained in:
parent
7a3e31c903
commit
1441a44690
5 changed files with 40 additions and 2 deletions
26
RELEASE.md
Normal file
26
RELEASE.md
Normal 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
9
TODO.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Matplotlib
|
||||||
|
|
||||||
|
* nom de fonction à introduire
|
||||||
|
* Unités
|
||||||
|
* * en \star
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.0'
|
__version__ = "0.1.0"
|
||||||
|
|
|
@ -53,6 +53,10 @@ testpaths = ["tests"]
|
||||||
python_files = "test_*.py"
|
python_files = "test_*.py"
|
||||||
pythonpath = ["."]
|
pythonpath = ["."]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools>=61.0"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[tool.coverage.run]
|
[tool.coverage.run]
|
||||||
source = ["optifik"]
|
source = ["optifik"]
|
||||||
omit = ["optifik/tests/*"]
|
omit = ["optifik/tests/*"]
|
||||||
|
|
|
@ -19,7 +19,6 @@ dependencies = [
|
||||||
packages = ["optifik"]
|
packages = ["optifik"]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://github.com/votrecompte/votreprojet"
|
Homepage = "https://github.com/votrecompte/votreprojet"
|
||||||
Documentation = "https://github.com/votrecompte/votreprojet#readme"
|
Documentation = "https://github.com/votrecompte/votreprojet#readme"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue