Skip to content

Commit

Permalink
Remove scripts, add entry point (#10)
Browse files Browse the repository at this point in the history
* Change way script is started, bump version number


* Bump version number to 1.5.4
  • Loading branch information
FinlayShepherd authored Jun 15, 2018
1 parent 92e8b86 commit 3446e6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion alertlogic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.0'
__version__ = '1.5.4'
3 changes: 1 addition & 2 deletions alertlogic/region.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"""
REGIONS = {
"us": "https://api.cloudinsight.alertlogic.com",
"uk": "https://api.cloudinsight.alertlogic.co.uk",
"int": "https://api.product.dev.alertlogic.com"
"uk": "https://api.cloudinsight.alertlogic.co.uk"
}


Expand Down
File renamed without changes.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
author='Alert Logic Inc.',
author_email='[email protected]',
description='Command Line Client for Alertlogic Services.',
scripts=['alertlogic-cli'],
entry_points = {
'console_scripts': ['alertlogic-cli=alertlogiccli.alertlogic_console:main']
},
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'troubleshooting']),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 3446e6b

Please sign in to comment.