ceros 0.1.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.
- ceros-0.1.0/PKG-INFO +9 -0
- ceros-0.1.0/README.md +1 -0
- ceros-0.1.0/ceros/__init__.py +0 -0
- ceros-0.1.0/ceros.egg-info/PKG-INFO +9 -0
- ceros-0.1.0/ceros.egg-info/SOURCES.txt +7 -0
- ceros-0.1.0/ceros.egg-info/dependency_links.txt +1 -0
- ceros-0.1.0/ceros.egg-info/top_level.txt +1 -0
- ceros-0.1.0/pyproject.toml +11 -0
- ceros-0.1.0/setup.cfg +4 -0
ceros-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ceros
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CO2 Electroreduction Output Surrogate
|
|
5
|
+
Author-email: Felix Sotvik <felixsotvik@gmail.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# CEROS - CO2 Electroreduction Output Surrogate
|
ceros-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# CEROS - CO2 Electroreduction Output Surrogate
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ceros
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CO2 Electroreduction Output Surrogate
|
|
5
|
+
Author-email: Felix Sotvik <felixsotvik@gmail.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# CEROS - CO2 Electroreduction Output Surrogate
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ceros
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ceros"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "CO2 Electroreduction Output Surrogate"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [{name = "Felix Sotvik", email = "felixsotvik@gmail.com"}]
|
ceros-0.1.0/setup.cfg
ADDED