Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Tvorozhkov committed Sep 18, 2022
1 parent 5858571 commit 958186b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import setuptools
from glob import glob

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
Expand All @@ -8,7 +9,7 @@

setuptools.setup(
name="toncli",
version="0.0.38",
version="0.0.43",
author="Andrey Tvorozhkov",
author_email="andrey@head-labs.com",
description="Easy to use CLI for fift / func projects",
Expand All @@ -25,9 +26,11 @@
"Operating System :: OS Independent",
"Environment :: Console",
],
package_dir={"": "src"},
package_dir={
"": "src",
},
install_requires=install_requires,
packages=setuptools.find_packages(where="src"),
packages=['toncli'],
python_requires=">=3.8",
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 958186b

Please sign in to comment.