add pyproj
This commit is contained in:
parent
5b47050819
commit
348706d60b
3 changed files with 66 additions and 2 deletions
|
|
@ -1 +1 @@
|
|||
__version__ = '0.1.30'
|
||||
__version__ = '0.1.31'
|
||||
|
|
|
|||
|
|
@ -613,7 +613,7 @@ def plot_phases(e_time, e_filtered, e_frequencies, s_filtered, n_modes, df, outp
|
|||
phase = df[df['mode'] == mod]['phase'].iloc[0]
|
||||
delay = df[df['mode'] == mod]['delay'].iloc[0]
|
||||
|
||||
ax[mod, 0].set_title(f'Freq: {freq:.3f}, Phase: {phase:.3f}, Delay: {delay:.3f}' )
|
||||
ax[mod, 0].set_title(f'Freq: {freq:.3f}, Phase: {phase:.3f}, Period: {1/freq:.3f}, Delay: {delay:.3f}' )
|
||||
ax[mod, 0].plot(e_time, e_filtered[mod], label='e')
|
||||
ax[mod, 0].plot(e_time, s_filtered[mod], label='s')
|
||||
#ax[mod].set_xlim(left=20, right=230)
|
||||
|
|
|
|||
64
pyproject.toml
Normal file
64
pyproject.toml
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "mysignal"
|
||||
description = "A short description of the project"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.6"
|
||||
license = {text = "MIT"}
|
||||
authors = [
|
||||
{name = "Your Name", email = "your.email@example.com"}
|
||||
]
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"Topic :: Software Development :: Build Tools",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
]
|
||||
dependencies = [
|
||||
"numpy",
|
||||
"scipy",
|
||||
"pandas",
|
||||
"PyWavelets"
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/yourusername/yourproject"
|
||||
|
||||
[tool.setuptools]
|
||||
# Inclure les fichiers de données spécifiés dans MANIFEST.in
|
||||
include-package-data = true
|
||||
# Trouver automatiquement les packages
|
||||
packages = {find = {}}
|
||||
|
||||
# Configuration optionnelle pour scripts d'entrée
|
||||
# [project.scripts]
|
||||
# sample = "sample:main"
|
||||
|
||||
[tool.bumpver]
|
||||
current_version = "0.1.31" # Définissez votre version initiale ici
|
||||
version_pattern = "MAJOR.MINOR.PATCH"
|
||||
commit_message = "bump version {old_version} -> {new_version}"
|
||||
tag_message = "v{new_version}"
|
||||
commit = true
|
||||
tag = true
|
||||
push = false
|
||||
|
||||
[tool.bumpver.file_patterns]
|
||||
"pyproject.toml" = [
|
||||
'current_version = "{version}"',
|
||||
'version = "{version}"',
|
||||
]
|
||||
"setup.py" = [
|
||||
'version = read_version(\'mysignal\')',
|
||||
]
|
||||
"mysignal/__init__.py" = [
|
||||
'__version__ = "{version}"'
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue