unitypredict 0.1.17__tar.gz → 0.1.18__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: unitypredict
3
- Version: 0.1.17
3
+ Version: 0.1.18
4
4
  Description-Content-Type: text/markdown
5
5
 
6
6
  # UnityPredict Local App Engine Creator
@@ -8,7 +8,7 @@ print ("Possible packages: {}".format(find_packages()))
8
8
 
9
9
  setup (
10
10
  name="unitypredict",
11
- version="0.1.17",
11
+ version="0.1.18",
12
12
  packages=find_packages(),
13
13
  install_requires=[
14
14
  # Currently no dependencies
@@ -16,7 +16,7 @@ setup (
16
16
  entry_points = { # this here is the magic that binds your function into a callable script
17
17
  'console_scripts':
18
18
  [
19
- 'unitypredict=unitypredict.scripts:runcmd'
19
+ 'uptools=unitypredict.scripts:main'
20
20
  ],
21
21
  },
22
22
  long_description=description,
@@ -0,0 +1,8 @@
1
+ import sys
2
+
3
+ def runcmd():
4
+ cmd = sys.argv[1:]
5
+ print(f'Command = {cmd}')
6
+
7
+ def main():
8
+ print('Hello, World!')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unitypredict
3
- Version: 0.1.17
3
+ Version: 0.1.18
4
4
  Description-Content-Type: text/markdown
5
5
 
6
6
  # UnityPredict Local App Engine Creator
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ uptools = unitypredict.scripts:main
@@ -1,5 +0,0 @@
1
- import sys
2
-
3
- def runcmd():
4
- cmd = sys.argv[1:]
5
- print(f'Command = {cmd}')
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- unitypredict = unitypredict.scripts:runcmd
File without changes
File without changes