Skip to content

Commit 6ab9bbd

Browse files
committed
Completed requirements
1 parent 32c718b commit 6ab9bbd

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__copyright__ = 'Copyright (c) 2020 Mathieu Daëron'
1515
__license__ = 'Modified BSD License - https://opensource.org/licenses/BSD-3-Clause'
1616
__date__ = '2020-05-11'
17-
__version__ = '0.3.1'
17+
__version__ = '0.3.2'
1818

1919
import os
2020
import numpy as np

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
lmfit >= 1.0.1
2+
matplotlib >= 3.1.3
3+
numpy >= 1.18.1
4+
scipy >= 1.4.1

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="D47crunch",
8-
version="0.3.1",
8+
version="0.3.2",
99
author="Mathieu Daëron",
1010
author_email="[email protected]",
1111
description="Standardization of Δ47 clumped-isotope measurements",
@@ -19,5 +19,10 @@
1919
"Operating System :: OS Independent",
2020
],
2121
python_requires='>=3.6',
22-
install_requires='lmfit>=1.0.1',
22+
install_requires=[
23+
'lmfit >= 1.0.1',
24+
'matplotlib >= 3.1.3',
25+
'numpy >= 1.18.1',
26+
'scipy >= 1.4.1',
27+
]
2328
)

0 commit comments

Comments
 (0)