torch-pme 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.
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: torch-pme
3
+ Version: 0.0.0
4
+ Summary: Particle-mesh based calculations of long-range interactions in PyTorch
5
+ License: BSD-3-Clause
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # torch-pme
10
+
11
+ Particle-mesh based calculations of long-range interactions in PyTorch.
12
+
13
+ This package is currently under development at https://github.com/lab-cosmo and
14
+ will be published here when a first version is ready.
@@ -0,0 +1,6 @@
1
+ # torch-pme
2
+
3
+ Particle-mesh based calculations of long-range interactions in PyTorch.
4
+
5
+ This package is currently under development at https://github.com/lab-cosmo and
6
+ will be published here when a first version is ready.
@@ -0,0 +1,15 @@
1
+ [project]
2
+ name = "torch-pme"
3
+ version = "0.0.0"
4
+ requires-python = ">=3.9"
5
+
6
+ readme = "README.md"
7
+ license = {text = "BSD-3-Clause"}
8
+ description = "Particle-mesh based calculations of long-range interactions in PyTorch"
9
+
10
+ [build-system]
11
+ requires = [
12
+ "setuptools >= 68",
13
+ "wheel",
14
+ ]
15
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ import sys
2
+
3
+ from setuptools import setup
4
+ from wheel.bdist_wheel import bdist_wheel
5
+
6
+
7
+ class no_wheel(bdist_wheel):
8
+ def run(self):
9
+ sys.exit(
10
+ "This package is currently under development at "
11
+ "https://github.com/lab-cosmo and will be published on "
12
+ "PyPI when a first version is ready."
13
+ )
14
+
15
+
16
+ if __name__ == "__main__":
17
+ setup(
18
+ cmdclass={"bdist_wheel": no_wheel},
19
+ )
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: torch-pme
3
+ Version: 0.0.0
4
+ Summary: Particle-mesh based calculations of long-range interactions in PyTorch
5
+ License: BSD-3-Clause
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+
9
+ # torch-pme
10
+
11
+ Particle-mesh based calculations of long-range interactions in PyTorch.
12
+
13
+ This package is currently under development at https://github.com/lab-cosmo and
14
+ will be published here when a first version is ready.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ src/torch_pme.egg-info/PKG-INFO
5
+ src/torch_pme.egg-info/SOURCES.txt
6
+ src/torch_pme.egg-info/dependency_links.txt
7
+ src/torch_pme.egg-info/top_level.txt
8
+ src/torchpme/__init__.py
@@ -0,0 +1 @@
1
+ torchpme
@@ -0,0 +1,4 @@
1
+ raise ImportError(
2
+ "This package is currently under development at https://github.com/lab-cosmo and"
3
+ "will be published on PyPI when a first version is ready."
4
+ )