We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb02494 commit 9a90754Copy full SHA for 9a90754
py/minimint/_version.py
@@ -1,8 +1,4 @@
1
-try:
2
- from importlib.metadata import version
3
-except ImportError:
4
- # Python < 3.8
5
- from importlib_metadata import version
+from importlib.metadata import version
6
7
try:
8
__version__ = version("minimint")
pyproject.toml
@@ -15,7 +15,12 @@ classifiers = [
15
"Topic :: Utilities",
16
"License :: OSI Approved :: BSD License",
17
]
18
-requires-python = ">=3.6"
+requires-python = ">=3.8"
19
+dependencies = [
20
+ "numpy",
21
+ "scipy",
22
+ "astropy",
23
+]
24
25
[project.urls]
26
Homepage = "http://github.com/segasai/minimint"
version.txt
0 commit comments