Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Oct 12, 2023
1 parent d5a428b commit ba31bd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
13 changes: 0 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
[bumpversion]
current_version = 0.0.2
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'

[bumpversion:file:askchat/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bdist_wheel]
universal = 1

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from setuptools import setup, find_packages

VERSION = '0.0.2'

with open('README.md') as readme_file:
readme = readme_file.read()

Expand Down Expand Up @@ -36,6 +38,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/rexwzh/askchat',
version='0.0.1',
version=VERSION,
zip_safe=False,
)

0 comments on commit ba31bd9

Please sign in to comment.