rewarduq 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.
- rewarduq-0.0.0/PKG-INFO +10 -0
- rewarduq-0.0.0/README.md +2 -0
- rewarduq-0.0.0/pyproject.toml +17 -0
- rewarduq-0.0.0/rewarduq/__init__.py +0 -0
- rewarduq-0.0.0/rewarduq.egg-info/PKG-INFO +10 -0
- rewarduq-0.0.0/rewarduq.egg-info/SOURCES.txt +7 -0
- rewarduq-0.0.0/rewarduq.egg-info/dependency_links.txt +1 -0
- rewarduq-0.0.0/rewarduq.egg-info/top_level.txt +1 -0
- rewarduq-0.0.0/setup.cfg +4 -0
rewarduq-0.0.0/PKG-INFO
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: rewarduq
|
3
|
+
Version: 0.0.0
|
4
|
+
Summary: Coming soon
|
5
|
+
Author-email: Lena Libon <llibon@ethz.ch>, Florian Redhardt <fredhardt@ethz.ch>, Samuel Stante <sstante@ethz.ch>, Daniel Yang <daniel.yang@inf.ethz.ch>
|
6
|
+
Requires-Python: >=3.9
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
|
9
|
+
# RewardUQ
|
10
|
+
Coming soon
|
rewarduq-0.0.0/README.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=77", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "rewarduq"
|
7
|
+
version = "0.0.0"
|
8
|
+
description = "Coming soon"
|
9
|
+
readme = "README.md"
|
10
|
+
requires-python = ">=3.9"
|
11
|
+
authors = [
|
12
|
+
{ name = "Lena Libon", email = "llibon@ethz.ch" },
|
13
|
+
{ name = "Florian Redhardt", email = "fredhardt@ethz.ch" },
|
14
|
+
{ name = "Samuel Stante", email = "sstante@ethz.ch" },
|
15
|
+
{ name = "Daniel Yang", email = "daniel.yang@inf.ethz.ch" },
|
16
|
+
]
|
17
|
+
dependencies = []
|
File without changes
|
@@ -0,0 +1,10 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: rewarduq
|
3
|
+
Version: 0.0.0
|
4
|
+
Summary: Coming soon
|
5
|
+
Author-email: Lena Libon <llibon@ethz.ch>, Florian Redhardt <fredhardt@ethz.ch>, Samuel Stante <sstante@ethz.ch>, Daniel Yang <daniel.yang@inf.ethz.ch>
|
6
|
+
Requires-Python: >=3.9
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
|
9
|
+
# RewardUQ
|
10
|
+
Coming soon
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
rewarduq
|
rewarduq-0.0.0/setup.cfg
ADDED