ragbits 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.
- ragbits-0.0.1/PKG-INFO +16 -0
- ragbits-0.0.1/pyproject.toml +3 -0
- ragbits-0.0.1/setup.cfg +40 -0
- ragbits-0.0.1/src/ragbits/__init__.py +3 -0
- ragbits-0.0.1/src/ragbits.egg-info/PKG-INFO +16 -0
- ragbits-0.0.1/src/ragbits.egg-info/SOURCES.txt +8 -0
- ragbits-0.0.1/src/ragbits.egg-info/dependency_links.txt +1 -0
- ragbits-0.0.1/src/ragbits.egg-info/not-zip-safe +1 -0
- ragbits-0.0.1/src/ragbits.egg-info/top_level.txt +1 -0
ragbits-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ragbits
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: "common utilities for the ragbits framework"
|
|
5
|
+
Author: deepsense.ai
|
|
6
|
+
Author-email: ragbits@deepsense.ai
|
|
7
|
+
License: Other/Proprietary License
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Natural Language :: English
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.10
|
ragbits-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[metadata]
|
|
2
|
+
name = ragbits
|
|
3
|
+
version = 0.0.1
|
|
4
|
+
description = "common utilities for the ragbits framework"
|
|
5
|
+
author = deepsense.ai
|
|
6
|
+
author_email = ragbits@deepsense.ai
|
|
7
|
+
license = Other/Proprietary License
|
|
8
|
+
license_files = LICENSE.md
|
|
9
|
+
classifiers =
|
|
10
|
+
Development Status :: 1 - Planning
|
|
11
|
+
Environment :: Console
|
|
12
|
+
Intended Audience :: Science/Research
|
|
13
|
+
License :: Other/Proprietary License
|
|
14
|
+
Natural Language :: English
|
|
15
|
+
Programming Language :: Python :: 3.10
|
|
16
|
+
Programming Language :: Python :: 3.11
|
|
17
|
+
Programming Language :: Python :: 3.12
|
|
18
|
+
|
|
19
|
+
[options]
|
|
20
|
+
package_dir =
|
|
21
|
+
=src
|
|
22
|
+
packages = find:
|
|
23
|
+
zip_safe = False
|
|
24
|
+
platforms = any
|
|
25
|
+
include_package_data = True
|
|
26
|
+
python_requires = >=3.10
|
|
27
|
+
|
|
28
|
+
[options.packages.find]
|
|
29
|
+
where = src
|
|
30
|
+
|
|
31
|
+
[bdist_wheel]
|
|
32
|
+
universal = 1
|
|
33
|
+
|
|
34
|
+
[aliases]
|
|
35
|
+
test = pytest
|
|
36
|
+
|
|
37
|
+
[egg_info]
|
|
38
|
+
tag_build =
|
|
39
|
+
tag_date = 0
|
|
40
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ragbits
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: "common utilities for the ragbits framework"
|
|
5
|
+
Author: deepsense.ai
|
|
6
|
+
Author-email: ragbits@deepsense.ai
|
|
7
|
+
License: Other/Proprietary License
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Natural Language :: English
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Requires-Python: >=3.10
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ragbits
|