Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martinunland committed Apr 20, 2023
1 parent 4710312 commit e6b1602
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
from setuptools import setup, find_packages

setup(
name='pulse_mode_analysis', # Replace with your desired library name
version='0.1.0',
description='Analysis of waveforms',
author='Martin Unland',
author_email='[email protected]',
url='https://github.com/martinunland/pulse_mode_analysis',
name="pulse_mode_analysis", # Replace with your desired library name
version="0.1.1",
description="Analysis of waveforms",
author="Martin Unland",
author_email="[email protected]",
url="https://github.com/martinunland/pulse_mode_analysis",
packages=find_packages(),
install_requires=[
# List the packages required for your library here, e.g.
'scipy',
'numpy',
"scipy",
"numpy",
],
python_requires='>=3.6',
)
python_requires=">=3.6",
)

0 comments on commit e6b1602

Please sign in to comment.