kinfer 0.0.2__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kinfer
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: The kinfer project
5
5
  Home-page: https://github.com/kscalelabs/kinfer.git
6
6
  Author: K-Scale Labs
@@ -0,0 +1,3 @@
1
+ __version__ = "0.0.3"
2
+
3
+ from . import export, inference
@@ -0,0 +1 @@
1
+ from .pytorch import *
@@ -0,0 +1 @@
1
+ from .python import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kinfer
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: The kinfer project
5
5
  Home-page: https://github.com/kscalelabs/kinfer.git
6
6
  Author: K-Scale Labs
@@ -5,7 +5,7 @@
5
5
  import re
6
6
  from typing import List
7
7
 
8
- from setuptools import setup
8
+ from setuptools import find_packages, setup
9
9
 
10
10
  with open("README.md", "r", encoding="utf-8") as f:
11
11
  long_description: str = f.read()
@@ -37,7 +37,7 @@ setup(
37
37
  install_requires=requirements,
38
38
  tests_require=requirements_dev,
39
39
  extras_require={"dev": requirements_dev},
40
- packages=["kinfer"],
40
+ packages=find_packages(),
41
41
  # entry_points={
42
42
  # "console_scripts": [
43
43
  # "kinfer.cli:main",
@@ -1 +0,0 @@
1
- __version__ = "0.0.2"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes