mlsys 0.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.
mlsys-0.0.0.1/PKG-INFO ADDED
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: mlsys
3
+ Version: 0.0.0.1
4
+ Summary: TBD
5
+ License: TBD
6
+ Keywords: mlsys
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Intended Audience :: End Users/Desktop
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: Intended Audience :: Information Technology
11
+ Classifier: Topic :: Software Development
12
+ Classifier: Topic :: System
13
+ Classifier: Topic :: Scientific/Engineering
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: pyyaml
23
+ Requires-Dist: requests
24
+ Requires-Dist: setuptools
25
+
26
+ # TBD
@@ -0,0 +1 @@
1
+ # TBD
@@ -0,0 +1 @@
1
+ __version__ = '0.0.0.1'
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: mlsys
3
+ Version: 0.0.0.1
4
+ Summary: TBD
5
+ License: TBD
6
+ Keywords: mlsys
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: Intended Audience :: End Users/Desktop
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: Intended Audience :: Information Technology
11
+ Classifier: Topic :: Software Development
12
+ Classifier: Topic :: System
13
+ Classifier: Topic :: Scientific/Engineering
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: pyyaml
23
+ Requires-Dist: requests
24
+ Requires-Dist: setuptools
25
+
26
+ # TBD
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ mlsys/__init__.py
4
+ mlsys.egg-info/PKG-INFO
5
+ mlsys.egg-info/SOURCES.txt
6
+ mlsys.egg-info/dependency_links.txt
7
+ mlsys.egg-info/not-zip-safe
8
+ mlsys.egg-info/requires.txt
9
+ mlsys.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,3 @@
1
+ pyyaml
2
+ requests
3
+ setuptools
@@ -0,0 +1 @@
1
+ mlsys
@@ -0,0 +1,62 @@
1
+ #
2
+
3
+ [build-system]
4
+ build-backend = "setuptools.build_meta"
5
+ requires = ["setuptools", "wheel"]
6
+
7
+ [project]
8
+ name = "mlsys"
9
+
10
+ #authors = [
11
+ # {name = "Grigori Fursin", email = "gfursin@cknowledge.org"}
12
+ #]
13
+
14
+ description = "TBD"
15
+
16
+ requires-python = ">=3.8"
17
+
18
+ dependencies = [
19
+ "pyyaml",
20
+ "requests",
21
+ "setuptools"
22
+ ]
23
+
24
+ keywords = [
25
+ "mlsys"
26
+ ]
27
+
28
+ license = {text = "TBD"}
29
+
30
+ classifiers = [
31
+ "Intended Audience :: Developers",
32
+ "Intended Audience :: End Users/Desktop",
33
+ "Intended Audience :: Science/Research",
34
+ "Intended Audience :: Information Technology",
35
+ "Topic :: Software Development",
36
+ "Topic :: System",
37
+ "Topic :: Scientific/Engineering",
38
+ "Operating System :: OS Independent",
39
+ "Programming Language :: Python :: 3.8",
40
+ "Programming Language :: Python :: 3.9",
41
+ "Programming Language :: Python :: 3.10",
42
+ "Programming Language :: Python :: 3.11",
43
+ "Programming Language :: Python :: 3.12",
44
+ ]
45
+
46
+ dynamic = ["readme", "version"]
47
+
48
+ [project.urls]
49
+ #Homepage = ""
50
+ #Source = ""
51
+
52
+ [tool.setuptools]
53
+ zip-safe = false
54
+
55
+ [tool.setuptools.packages.find]
56
+ where = ["."]
57
+ include = ["mlsys", "mlsys.*"]
58
+ exclude = ["docs", "docs.*", "tests", "tests.*"]
59
+
60
+ [tool.setuptools.dynamic]
61
+ readme = {file = "README.md", content-type = "text/markdown"}
62
+ version = {attr = "mlsys.__version__"}
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+