Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Jose Diaz-Gonzalez
2016-06-12 00:36:03 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fc91bd6bb3792d7c3a79252d2c94d726cae62332
fc91bd6b
1 parent
337445dc
Make setup.py runnable
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
setup.py
setup.py
View file @
fc91bd6
...
...
@@ -13,7 +13,8 @@ def open_file(fname):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
))
setup
(
def
run_setup
():
setup
(
name
=
'kappa'
,
version
=
__version__
,
description
=
'A CLI tool for AWS Lambda developers'
,
...
...
@@ -46,4 +47,7 @@ setup(
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
),
)
)
if
__name__
==
'__main__'
:
run_setup
()
...
...
Please
register
or
login
to post a comment