ase-cp2k 0.1__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.
ase_cp2k-0.1/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: ase-cp2k
3
+ Version: 0.1
4
+ Home-page: https://www.cp2k.org/tools:ase
5
+ Author: Ole Schuett
6
+ Author-email: ole.schuett@cp2k.org
7
+ Dynamic: author
8
+ Dynamic: author-email
9
+ Dynamic: home-page
File without changes
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: ase-cp2k
3
+ Version: 0.1
4
+ Home-page: https://www.cp2k.org/tools:ase
5
+ Author: Ole Schuett
6
+ Author-email: ole.schuett@cp2k.org
7
+ Dynamic: author
8
+ Dynamic: author-email
9
+ Dynamic: home-page
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ ase-cp2k/__init__.py
3
+ ase_cp2k.egg-info/PKG-INFO
4
+ ase_cp2k.egg-info/SOURCES.txt
5
+ ase_cp2k.egg-info/dependency_links.txt
6
+ ase_cp2k.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ ase-cp2k
ase_cp2k-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ase_cp2k-0.1/setup.py ADDED
@@ -0,0 +1,9 @@
1
+ from distutils.core import setup
2
+ setup(
3
+ name = 'ase-cp2k',
4
+ packages = ['ase-cp2k'],
5
+ version = '0.1',
6
+ author = 'Ole Schuett',
7
+ author_email = 'ole.schuett@cp2k.org',
8
+ url = 'https://www.cp2k.org/tools:ase',
9
+ )