Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
  • Loading branch information
SheinaG committed Jan 10, 2023
1 parent 512376b commit 844a80e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions pecg/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import setuptools

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()


setuptools.setup(
name="pecg",
Expand All @@ -12,7 +16,7 @@
author="sheina Gendelman",
author_email="sheina@campus.technion.ac.il",
description="pecg: a python toolbox for ECG morphological analysis.",
long_description="file:: README.rst",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SheinaG/PECG",
project_urls={
Expand All @@ -33,7 +37,7 @@
},
include_package_data=True,
python_requires=">=3.6",
install_requires=["numpy==1.20.2", "mne==0.23.0", "scipy==1.7.0"],
install_requires=["numpy==1.24", "mne==1.3", "scipy==1.7.0"],
)


7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()


setuptools.setup(
Expand All @@ -12,7 +15,7 @@
author="sheina Gendelman",
author_email="sheina@campus.technion.ac.il",
description="pecg: a python toolbox for ECG morphological analysis.",
long_description="file:: README.rst",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SheinaG/PECG",
project_urls={
Expand All @@ -33,5 +36,5 @@
},
include_package_data=True,
python_requires=">=3.6",
install_requires=["numpy==1.20.2", "mne==0.23.0", "scipy==1.7.0"],
install_requires=["numpy==1.24", "mne==1.3", "scipy==1.7.0"],
)

0 comments on commit 844a80e

Please sign in to comment.