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 +12 -0
- gspc-0.0.1/README.md +1 -0
- gspc-0.0.1/gspc/__init__.py +0 -0
- gspc-0.0.1/gspc/main.py +0 -0
- gspc-0.0.1/gspc/settings/__init__.py +0 -0
- gspc-0.0.1/gspc.egg-info/PKG-INFO +12 -0
- gspc-0.0.1/gspc.egg-info/SOURCES.txt +10 -0
- gspc-0.0.1/gspc.egg-info/dependency_links.txt +1 -0
- gspc-0.0.1/gspc.egg-info/requires.txt +5 -0
- gspc-0.0.1/gspc.egg-info/top_level.txt +1 -0
- gspc-0.0.1/setup.cfg +4 -0
- gspc-0.0.1/setup.py +18 -0
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
|
gspc-0.0.1/gspc/main.py
ADDED
|
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gspc
|
gspc-0.0.1/setup.cfg
ADDED
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
|
+
)
|