Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Fix for build RPM
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Korbel committed Jan 23, 2018
1 parent 492682c commit 193f4aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_version():


setup(
name='5minute',
name='vminute',
version=get_version(),
description='A tool for quick creation and deployment of Openstack machines used for QA testing.',
long_description=long_description,
Expand All @@ -46,11 +46,11 @@ def get_version():
install_requires=reqs,
packages=find_packages(),
package_data={
'vminute': ['scenarios/README']
'': ['README.md']
},
entry_points={
'console_scripts': [
'5minute=vminute.vminute.main'
'5minute=vminute:main_main'
]
}
)
2 changes: 1 addition & 1 deletion vminute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .vminute import main
import sys
__version__ = "0.2.19"
__version__ = "0.2.23"


def main_main():
Expand Down

0 comments on commit 193f4aa

Please sign in to comment.