gspc 0.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.
gspc-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: gspc
3
+ Version: 0.0.1
4
+ Summary: GSPC package is a package for computing structural properties of glasses
5
+ Home-page: https://github.com/JulienPerradin/gspc
6
+ Author: Julien Perradin
7
+ Author-email: julien.perradin@umontpellier.fr
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: matplotlib
11
+ Requires-Dist: numba
12
+ Requires-Dist: scipy
gspc-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ # GSPC Glass Structural Properties Calculator
File without changes
File without changes
File without changes
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: gspc
3
+ Version: 0.0.1
4
+ Summary: GSPC package is a package for computing structural properties of glasses
5
+ Home-page: https://github.com/JulienPerradin/gspc
6
+ Author: Julien Perradin
7
+ Author-email: julien.perradin@umontpellier.fr
8
+ Requires-Dist: numpy
9
+ Requires-Dist: pandas
10
+ Requires-Dist: matplotlib
11
+ Requires-Dist: numba
12
+ Requires-Dist: scipy
@@ -0,0 +1,10 @@
1
+ README.md
2
+ setup.py
3
+ gspc/__init__.py
4
+ gspc/main.py
5
+ gspc.egg-info/PKG-INFO
6
+ gspc.egg-info/SOURCES.txt
7
+ gspc.egg-info/dependency_links.txt
8
+ gspc.egg-info/requires.txt
9
+ gspc.egg-info/top_level.txt
10
+ gspc/settings/__init__.py
@@ -0,0 +1,5 @@
1
+ numpy
2
+ pandas
3
+ matplotlib
4
+ numba
5
+ scipy
@@ -0,0 +1 @@
1
+ gspc
gspc-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
gspc-0.0.1/setup.py ADDED
@@ -0,0 +1,18 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='gspc',
5
+ version='0.0.1',
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ 'numpy',
9
+ 'pandas',
10
+ 'matplotlib',
11
+ 'numba',
12
+ 'scipy'
13
+ ],
14
+ author='Julien Perradin',
15
+ author_email='julien.perradin@umontpellier.fr',
16
+ description='GSPC package is a package for computing structural properties of glasses',
17
+ url='https://github.com/JulienPerradin/gspc',
18
+ )