kscale 0.0.8__tar.gz → 0.0.9__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. {kscale-0.0.8/kscale.egg-info → kscale-0.0.9}/PKG-INFO +1 -1
  2. {kscale-0.0.8 → kscale-0.0.9}/kscale/__init__.py +5 -1
  3. kscale-0.0.9/kscale/artifacts/__init__.py +8 -0
  4. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/pybullet.py +2 -2
  5. {kscale-0.0.8 → kscale-0.0.9/kscale.egg-info}/PKG-INFO +1 -1
  6. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/SOURCES.txt +1 -0
  7. {kscale-0.0.8 → kscale-0.0.9}/LICENSE +0 -0
  8. {kscale-0.0.8 → kscale-0.0.9}/MANIFEST.in +0 -0
  9. {kscale-0.0.8 → kscale-0.0.9}/README.md +0 -0
  10. {kscale-0.0.8 → kscale-0.0.9}/kscale/api.py +0 -0
  11. {kscale-0.0.8 → kscale-0.0.9}/kscale/artifacts/plane.obj +0 -0
  12. {kscale-0.0.8 → kscale-0.0.9}/kscale/artifacts/plane.urdf +0 -0
  13. {kscale-0.0.8 → kscale-0.0.9}/kscale/conf.py +0 -0
  14. {kscale-0.0.8 → kscale-0.0.9}/kscale/py.typed +0 -0
  15. {kscale-0.0.8 → kscale-0.0.9}/kscale/requirements-dev.txt +0 -0
  16. {kscale-0.0.8 → kscale-0.0.9}/kscale/requirements.txt +0 -0
  17. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/__init__.py +0 -0
  18. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/api.py +0 -0
  19. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/cli.py +0 -0
  20. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/client.py +0 -0
  21. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/gen/__init__.py +0 -0
  22. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/gen/api.py +0 -0
  23. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/urdf.py +0 -0
  24. {kscale-0.0.8 → kscale-0.0.9}/kscale/store/utils.py +0 -0
  25. {kscale-0.0.8 → kscale-0.0.9}/kscale/utils/__init__.py +0 -0
  26. {kscale-0.0.8 → kscale-0.0.9}/kscale/utils/api_base.py +0 -0
  27. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/dependency_links.txt +0 -0
  28. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/entry_points.txt +0 -0
  29. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/not-zip-safe +0 -0
  30. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/requires.txt +0 -0
  31. {kscale-0.0.8 → kscale-0.0.9}/kscale.egg-info/top_level.txt +0 -0
  32. {kscale-0.0.8 → kscale-0.0.9}/pyproject.toml +0 -0
  33. {kscale-0.0.8 → kscale-0.0.9}/setup.cfg +0 -0
  34. {kscale-0.0.8 → kscale-0.0.9}/setup.py +0 -0
  35. {kscale-0.0.8 → kscale-0.0.9}/tests/test_dummy.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kscale
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: The kscale project
5
5
  Home-page: https://github.com/kscalelabs/kscale
6
6
  Author: Benjamin Bolte
@@ -1,5 +1,9 @@
1
1
  """Defines the common interface for the K-Scale Python API."""
2
2
 
3
- __version__ = "0.0.8"
3
+ __version__ = "0.0.9"
4
+
5
+ from pathlib import Path
4
6
 
5
7
  from kscale.api import KScale
8
+
9
+ ROOT_DIR = Path(__file__).parent
@@ -0,0 +1,8 @@
1
+ """Defines some helper functions for working with artifacts."""
2
+
3
+ from pathlib import Path
4
+
5
+ ARTIFACTS_DIR = Path(__file__).parent.resolve()
6
+
7
+ PLANE_OBJ_PATH = ARTIFACTS_DIR / "plane.obj"
8
+ PLANE_URDF_PATH = ARTIFACTS_DIR / "plane.urdf"
@@ -6,9 +6,9 @@ import itertools
6
6
  import logging
7
7
  import math
8
8
  import time
9
- from pathlib import Path
10
9
  from typing import Sequence
11
10
 
11
+ from kscale.artifacts import PLANE_URDF_PATH
12
12
  from kscale.store.urdf import download_urdf
13
13
 
14
14
  logger = logging.getLogger(__name__)
@@ -53,7 +53,7 @@ async def main(args: Sequence[str] | None = None) -> None:
53
53
  p.configureDebugVisualizer(p.COV_ENABLE_MOUSE_PICKING, 1)
54
54
 
55
55
  # Loads the floor plane.
56
- floor = p.loadURDF(str((Path(__file__).parent / "bullet" / "plane.urdf").resolve()))
56
+ floor = p.loadURDF(str(PLANE_URDF_PATH))
57
57
 
58
58
  # Load the robot URDF.
59
59
  start_position = [0.0, 0.0, 1.0]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kscale
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: The kscale project
5
5
  Home-page: https://github.com/kscalelabs/kscale
6
6
  Author: Benjamin Bolte
@@ -16,6 +16,7 @@ kscale.egg-info/entry_points.txt
16
16
  kscale.egg-info/not-zip-safe
17
17
  kscale.egg-info/requires.txt
18
18
  kscale.egg-info/top_level.txt
19
+ kscale/artifacts/__init__.py
19
20
  kscale/artifacts/plane.obj
20
21
  kscale/artifacts/plane.urdf
21
22
  kscale/store/__init__.py
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes