mlip 0.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mlip-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.1
2
+ Name: mlip
3
+ Version: 0.0.0
4
+ Summary:
5
+ License: LICENSE
6
+ Author: Yessine Khanfir
7
+ Requires-Python: >=3.10,<3.12
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Environment :: Console
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: License :: Other/Proprietary License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Dist: ase (>=3.22.1,<4.0.0)
21
+ Requires-Dist: dm-haiku (>=0.0.12,<0.0.13)
22
+ Requires-Dist: dm-tree (>=0.1.8,<0.2.0)
23
+ Requires-Dist: e3nn-jax (>=0.20.7,<0.21.0)
24
+ Requires-Dist: flax (>=0.9.0,<0.10.0)
25
+ Requires-Dist: h5py (>=3.12.1,<4.0.0)
26
+ Requires-Dist: jax-md (>=0.2.8,<0.3.0)
27
+ Requires-Dist: jraph
28
+ Requires-Dist: matscipy (==1.0.0)
29
+ Requires-Dist: numpy (>=1.26.0,<2.0.0)
30
+ Requires-Dist: omegaconf (>=2.3.0,<3.0.0)
31
+ Requires-Dist: orbax (>=0.1.9,<0.2.0)
32
+ Requires-Dist: orbax-checkpoint (==0.5.2)
33
+ Requires-Dist: pydantic (>=2.10.2,<3.0.0)
34
+ Requires-Dist: roundmantissa (>=0.2.1,<0.3.0)
35
+ Requires-Dist: tdqm (>=0.0.1,<0.0.2)
36
+ Requires-Dist: tqdm-loggable (>=0.2,<0.3)
37
+ Description-Content-Type: text/markdown
38
+
39
+ # This is a dummy test open-source repo for automated packaging
mlip-0.0.0/README.md ADDED
@@ -0,0 +1 @@
1
+ # This is a dummy test open-source repo for automated packaging
@@ -0,0 +1,2 @@
1
+ from .dummy_script import show_message
2
+
File without changes
@@ -0,0 +1,2 @@
1
+ def show_message():
2
+ print("This function is within the id-mlip package installed from PyPI ! version 0.7")
@@ -0,0 +1,75 @@
1
+ [tool.poetry]
2
+ name = "mlip"
3
+ version = "0.0.0"
4
+ description = ""
5
+ license = "LICENSE"
6
+ authors = [
7
+ "Yessine Khanfir",
8
+ ]
9
+ readme = "README.md"
10
+ classifiers = [
11
+ "Development Status :: 3 - Alpha",
12
+ "Environment :: Console",
13
+ "Intended Audience :: Science/Research",
14
+ "Intended Audience :: Developers",
15
+ "Operating System :: OS Independent",
16
+ "Programming Language :: Python :: 3.10",
17
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
18
+ "Topic :: Software Development :: Libraries :: Python Modules",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ ]
21
+
22
+ [tool.poetry.dependencies]
23
+ python = ">=3.10,<3.12"
24
+ numpy = "^1.26.0"
25
+ ase = "^3.22.1"
26
+ orbax-checkpoint = "0.5.2"
27
+ omegaconf = "^2.3.0"
28
+ dm-haiku = "^0.0.12"
29
+ dm-tree = "^0.1.8"
30
+ e3nn-jax = "^0.20.7"
31
+ flax = "^0.9.0"
32
+ jraph = "*"
33
+ orbax = "^0.1.9"
34
+ roundmantissa = "^0.2.1"
35
+ matscipy = "1.0.0"
36
+ tdqm = "^0.0.1"
37
+ jax-md = "^0.2.8"
38
+ pydantic = "^2.10.2"
39
+ tqdm-loggable = "^0.2"
40
+ h5py = "^3.12.1"
41
+
42
+ [tool.poetry.group.jax.dependencies]
43
+ jax = {extras = ["cuda12_local"], version = "0.4.33"}
44
+ jaxlib = {extras = ["cuda12_local"], version = "0.4.33"}
45
+
46
+ [tool.poetry.group.dev.dependencies]
47
+ pytest = "^7.4.0"
48
+ pytest-cov = "^4.1.0"
49
+ black = "24.2.0"
50
+ pre-commit = "^4.0.1"
51
+ sphinx = "^8.1.3"
52
+ furo = "^2024.8.6"
53
+
54
+ [tool.poetry.group.experiment.dependencies]
55
+ jupyter = "^1.1.1"
56
+ hydra-core = "^1.3.2"
57
+ huggingface-hub = "^0.25.2"
58
+ insta-fs = {version = "^0.2.0", source = "instafs"}
59
+ cloudpathlib = "^0.19.0"
60
+ neptune = "^1.12.0"
61
+
62
+ [[tool.poetry.source]]
63
+ name = "instafs"
64
+ url = "https://gitlab.com/api/v4/projects/47354289/packages/pypi/simple"
65
+ priority = "supplemental"
66
+
67
+ [build-system]
68
+ requires = ["poetry-core"]
69
+ build-backend = "poetry.core.masonry.api"
70
+
71
+ [tool.isort]
72
+ profile = "black"
73
+
74
+ [tool.coverage.report]
75
+ include_namespace_packages = true