featomic-torch 0.7.0__tar.gz → 0.7.2__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.
- {featomic_torch-0.7.0/featomic_torch.egg-info → featomic_torch-0.7.2}/PKG-INFO +5 -5
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/build-backend/backend.py +2 -2
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/clebsch_gordan.py +1 -1
- featomic_torch-0.7.2/featomic-torch-cxx-0.7.2.tar.gz +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2/featomic_torch.egg-info}/PKG-INFO +5 -5
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic_torch.egg-info/SOURCES.txt +1 -1
- featomic_torch-0.7.2/featomic_torch.egg-info/requires.txt +4 -0
- featomic_torch-0.7.2/git_version_info +2 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/pyproject.toml +1 -1
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/setup.py +3 -3
- featomic_torch-0.7.0/featomic-torch-cxx-0.7.0.tar.gz +0 -0
- featomic_torch-0.7.0/featomic_torch.egg-info/requires.txt +0 -4
- featomic_torch-0.7.0/git_version_info +0 -2
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/AUTHORS +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/LICENSE +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/MANIFEST.in +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/README.rst +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/__init__.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/_c_lib.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/calculator_base.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/calculators.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/system.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic/torch/utils.py +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic_torch.egg-info/dependency_links.txt +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic_torch.egg-info/not-zip-safe +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/featomic_torch.egg-info/top_level.txt +0 -0
- {featomic_torch-0.7.0 → featomic_torch-0.7.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: featomic-torch
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: TorchScript bindings to featomic
|
|
5
5
|
Author: Guillaume Fraux, Philip Loche, Sergei Kliavinek, Kevin Kazuki Huguenin-Dumittan, Davide Tisi, Alexander Goscinski
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -21,14 +21,14 @@ Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
25
|
Description-Content-Type: text/x-rst
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
License-File: AUTHORS
|
|
28
28
|
Requires-Dist: torch>=2.1
|
|
29
|
-
Requires-Dist: metatensor-torch<0.
|
|
30
|
-
Requires-Dist: metatomic-torch<0.2,>=0.1.
|
|
31
|
-
Requires-Dist: featomic<0.7
|
|
29
|
+
Requires-Dist: metatensor-torch<0.9,>=0.8.0
|
|
30
|
+
Requires-Dist: metatomic-torch<0.2,>=0.1.4
|
|
31
|
+
Requires-Dist: featomic<0.7,>=0.6.3
|
|
32
32
|
Dynamic: author
|
|
33
33
|
Dynamic: license-file
|
|
34
34
|
Dynamic: requires-dist
|
|
@@ -42,7 +42,7 @@ def get_requires_for_build_wheel(config_settings=None):
|
|
|
42
42
|
return defaults + [
|
|
43
43
|
"cmake",
|
|
44
44
|
TORCH_DEP,
|
|
45
|
-
"metatensor-torch >=0.
|
|
46
|
-
"metatomic-torch >=0.1.
|
|
45
|
+
"metatensor-torch >=0.8.0,<0.9",
|
|
46
|
+
"metatomic-torch >=0.1.4,<0.2",
|
|
47
47
|
FEATOMIC_DEP,
|
|
48
48
|
]
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: featomic-torch
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: TorchScript bindings to featomic
|
|
5
5
|
Author: Guillaume Fraux, Philip Loche, Sergei Kliavinek, Kevin Kazuki Huguenin-Dumittan, Davide Tisi, Alexander Goscinski
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -21,14 +21,14 @@ Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
25
|
Description-Content-Type: text/x-rst
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
License-File: AUTHORS
|
|
28
28
|
Requires-Dist: torch>=2.1
|
|
29
|
-
Requires-Dist: metatensor-torch<0.
|
|
30
|
-
Requires-Dist: metatomic-torch<0.2,>=0.1.
|
|
31
|
-
Requires-Dist: featomic<0.7
|
|
29
|
+
Requires-Dist: metatensor-torch<0.9,>=0.8.0
|
|
30
|
+
Requires-Dist: metatomic-torch<0.2,>=0.1.4
|
|
31
|
+
Requires-Dist: featomic<0.7,>=0.6.3
|
|
32
32
|
Dynamic: author
|
|
33
33
|
Dynamic: license-file
|
|
34
34
|
Dynamic: requires-dist
|
|
@@ -346,8 +346,8 @@ if __name__ == "__main__":
|
|
|
346
346
|
|
|
347
347
|
install_requires = [
|
|
348
348
|
f"torch {torch_version}",
|
|
349
|
-
"metatensor-torch >=0.
|
|
350
|
-
"metatomic-torch >=0.1.
|
|
349
|
+
"metatensor-torch >=0.8.0,<0.9",
|
|
350
|
+
"metatomic-torch >=0.1.4,<0.2",
|
|
351
351
|
]
|
|
352
352
|
|
|
353
353
|
# when packaging a sdist for release, we should never use local dependencies
|
|
@@ -357,7 +357,7 @@ if __name__ == "__main__":
|
|
|
357
357
|
install_requires.append(f"featomic @ file://{FEATOMIC_PYTHON_SRC}")
|
|
358
358
|
else:
|
|
359
359
|
# we are building from a sdist/installing from a wheel
|
|
360
|
-
install_requires.append("featomic >=0.6.
|
|
360
|
+
install_requires.append("featomic >=0.6.3,<0.7")
|
|
361
361
|
|
|
362
362
|
setup(
|
|
363
363
|
version=version,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|