Skip to content

Commit c0ffff5

Browse files
committed
version v0.0.2
1 parent c768757 commit c0ffff5

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
# Changelog
33

44

5-
## next version v0.0.2 -
5+
## next version v0.0.3 - ???
6+
7+
-
8+
9+
10+
## version v0.0.2 - 20220522
611

712
- fix entry point in setup py
13+
- fix plugin source in wheel
814
-
915

1016

setup.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ def find_projectname():
2828
version = find_version(file)
2929
projectname = find_projectname()
3030

31+
32+
packages = setuptools.find_packages()
33+
print(packages)
34+
3135
setuptools.setup(
3236
name=projectname,
3337
version=version,
@@ -37,12 +41,12 @@ def find_projectname():
3741
long_description=long_description,
3842
long_description_content_type="text/markdown",
3943
url=f"https://github.com/kr-g/{projectname}",
40-
packages=setuptools.find_packages(),
44+
packages=packages,
4145
license="MIT",
4246
keywords="python utility shell git git-workspace tkinter thonny",
4347
install_requires=[
4448
"gitonic",
45-
"thonny >= 3.0.0",
49+
"thonny >= 3.3.0",
4650
],
4751
classifiers=[
4852
"Development Status :: 3 - Alpha",
@@ -59,4 +63,5 @@ def find_projectname():
5963
)
6064

6165
# python3 -m setup sdist build bdist_wheel
66+
# twine upload --repository testpypi dist/*
6267
# twine upload dist/*

thonnycontrib/__init__.py

Whitespace-only changes.

thonnycontrib/gitonic/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
VERSION = "v0.0.2-a"
3+
VERSION = "v0.0.2"
44

55
# import subprocess
66

0 commit comments

Comments
 (0)