File tree 4 files changed +15
-4
lines changed
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2
2
# Changelog
3
3
4
4
5
- ## next version v0.0.2 -
5
+ ## next version v0.0.3 - ???
6
+
7
+ -
8
+
9
+
10
+ ## version v0.0.2 - 20220522
6
11
7
12
- fix entry point in setup py
13
+ - fix plugin source in wheel
8
14
-
9
15
10
16
Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ def find_projectname():
28
28
version = find_version (file )
29
29
projectname = find_projectname ()
30
30
31
+
32
+ packages = setuptools .find_packages ()
33
+ print (packages )
34
+
31
35
setuptools .setup (
32
36
name = projectname ,
33
37
version = version ,
@@ -37,12 +41,12 @@ def find_projectname():
37
41
long_description = long_description ,
38
42
long_description_content_type = "text/markdown" ,
39
43
url = f"https://github.com/kr-g/{ projectname } " ,
40
- packages = setuptools . find_packages () ,
44
+ packages = packages ,
41
45
license = "MIT" ,
42
46
keywords = "python utility shell git git-workspace tkinter thonny" ,
43
47
install_requires = [
44
48
"gitonic" ,
45
- "thonny >= 3.0 .0" ,
49
+ "thonny >= 3.3 .0" ,
46
50
],
47
51
classifiers = [
48
52
"Development Status :: 3 - Alpha" ,
@@ -59,4 +63,5 @@ def find_projectname():
59
63
)
60
64
61
65
# python3 -m setup sdist build bdist_wheel
66
+ # twine upload --repository testpypi dist/*
62
67
# twine upload dist/*
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
- VERSION = "v0.0.2-a "
3
+ VERSION = "v0.0.2"
4
4
5
5
# import subprocess
6
6
You can’t perform that action at this time.
0 commit comments