mirror of
https://github.com/hydrosquall/tiingo-python.git
synced 2025-12-18 12:24:18 +01:00
23 lines
403 B
INI
23 lines
403 B
INI
[bumpversion]
|
|
current_version = 0.1.0
|
|
commit = True
|
|
tag = True
|
|
|
|
[bumpversion:file:setup.py]
|
|
search = version='{current_version}'
|
|
replace = version='{new_version}'
|
|
|
|
[bumpversion:file:tiingo/__init__.py]
|
|
search = __version__ = '{current_version}'
|
|
replace = __version__ = '{new_version}'
|
|
|
|
[bdist_wheel]
|
|
universal = 1
|
|
|
|
[flake8]
|
|
exclude = docs
|
|
|
|
[aliases]
|
|
test = pytest
|
|
# Define setup.py command aliases here
|