quadra 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.
quadra-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: quadra
3
+ Version: 0.0.1
4
+ Summary: Deep Learning experiment orchestration tool
5
+ Author: rcmalli
6
+ Author-email: refikcanmalli@gmail.com
7
+ Requires-Python: >=3.8,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Deep Learning experiment orchestration tool
quadra-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ # Deep Learning experiment orchestration tool
@@ -0,0 +1,14 @@
1
+ [tool.poetry]
2
+ name = "quadra"
3
+ version = "0.0.1"
4
+ description = "Deep Learning experiment orchestration tool"
5
+ authors = ["rcmalli <refikcanmalli@gmail.com>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.8"
10
+
11
+
12
+ [build-system]
13
+ requires = ["poetry-core"]
14
+ build-backend = "poetry.core.masonry.api"
File without changes
quadra-0.0.1/setup.py ADDED
@@ -0,0 +1,26 @@
1
+ # -*- coding: utf-8 -*-
2
+ from setuptools import setup
3
+
4
+ packages = \
5
+ ['quadra']
6
+
7
+ package_data = \
8
+ {'': ['*']}
9
+
10
+ setup_kwargs = {
11
+ 'name': 'quadra',
12
+ 'version': '0.0.1',
13
+ 'description': 'Deep Learning experiment orchestration tool',
14
+ 'long_description': '# Deep Learning experiment orchestration tool',
15
+ 'author': 'rcmalli',
16
+ 'author_email': 'refikcanmalli@gmail.com',
17
+ 'maintainer': 'None',
18
+ 'maintainer_email': 'None',
19
+ 'url': 'None',
20
+ 'packages': packages,
21
+ 'package_data': package_data,
22
+ 'python_requires': '>=3.8,<4.0',
23
+ }
24
+
25
+
26
+ setup(**setup_kwargs)