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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
34 deletions
setup.py
setup.py
View file @
fc91bd6
...
...
@@ -13,37 +13,41 @@ def open_file(fname):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
))
setup
(
name
=
'kappa'
,
version
=
__version__
,
description
=
'A CLI tool for AWS Lambda developers'
,
long_description
=
open_file
(
'README.rst'
)
.
read
(),
url
=
'https://github.com/garnaat/kappa'
,
author
=
'Mitch Garnaat'
,
author_email
=
'mitch@garnaat.com'
,
license
=
'Apache License 2.0'
,
packages
=
[
'kappa'
,
'kappa.scripts'
],
package_data
=
{
'kappa'
:
[
'_version'
]},
package_dir
=
{
'kappa'
:
'kappa'
},
entry_points
=
"""
[console_scripts]
kappa=kappa.scripts.cli:cli
"""
,
install_requires
=
open_file
(
'requirements.txt'
)
.
readlines
(),
test_suite
=
'tests'
,
include_package_data
=
True
,
zip_safe
=
True
,
classifiers
=
(
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'Intended Audience :: System Administrators'
,
'Natural Language :: English'
,
'License :: OSI Approved :: Apache Software License'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
),
)
def
run_setup
():
setup
(
name
=
'kappa'
,
version
=
__version__
,
description
=
'A CLI tool for AWS Lambda developers'
,
long_description
=
open_file
(
'README.rst'
)
.
read
(),
url
=
'https://github.com/garnaat/kappa'
,
author
=
'Mitch Garnaat'
,
author_email
=
'mitch@garnaat.com'
,
license
=
'Apache License 2.0'
,
packages
=
[
'kappa'
,
'kappa.scripts'
],
package_data
=
{
'kappa'
:
[
'_version'
]},
package_dir
=
{
'kappa'
:
'kappa'
},
entry_points
=
"""
[console_scripts]
kappa=kappa.scripts.cli:cli
"""
,
install_requires
=
open_file
(
'requirements.txt'
)
.
readlines
(),
test_suite
=
'tests'
,
include_package_data
=
True
,
zip_safe
=
True
,
classifiers
=
(
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'Intended Audience :: System Administrators'
,
'Natural Language :: English'
,
'License :: OSI Approved :: Apache Software License'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
),
)
if
__name__
==
'__main__'
:
run_setup
()
...
...
Please
register
or
login
to post a comment