airobo 0.1.9__tar.gz → 0.1.10__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.4
2
2
  Name: airobo
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: A CLI tool for Airobo tasks
5
5
  Author-email: Joshua Morvant <joshua@aiarobo.com>
6
6
  Requires-Python: >=3.7
@@ -5,8 +5,8 @@ import os
5
5
  import re
6
6
 
7
7
  # Declarations / modules
8
- from airobo.modules import publishAndroid
9
- from airobo.modules import publishIOS
8
+ from airobo.modules.publishAndroid import publish_android
9
+ from airobo.modules.publishIOS import publish_ios
10
10
 
11
11
  # ======================================================================================
12
12
 
@@ -17,12 +17,12 @@ def publish(plat=None):
17
17
  if plat != "ios" and plat != "android" and plat != None:
18
18
  return "Supply a valid platform type!"
19
19
  if plat == "ios":
20
- publishIOS()
20
+ publish_ios()
21
21
  elif plat == "android":
22
- publishAndroid()
22
+ publish_android()
23
23
  else: #default : publish all.
24
- publishIOS()
25
- publishAndroid()
24
+ publish_ios()
25
+ publish_android()
26
26
 
27
27
  #----------------------------------------
28
28
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airobo
3
- Version: 0.1.9
3
+ Version: 0.1.10
4
4
  Summary: A CLI tool for Airobo tasks
5
5
  Author-email: Joshua Morvant <joshua@aiarobo.com>
6
6
  Requires-Python: >=3.7
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "airobo"
7
- version = "0.1.9"
7
+ version = "0.1.10"
8
8
  description = "A CLI tool for Airobo tasks"
9
9
  authors = [
10
10
  { name="Joshua Morvant", email="joshua@aiarobo.com" }
File without changes
File without changes
File without changes