This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from marksteve/cli
Add cli script
- Loading branch information
Showing
2 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
setup( | ||
name='kaptan', | ||
|
@@ -9,5 +9,10 @@ | |
author='Emre Yilmaz', | ||
author_email='[email protected]', | ||
description='Configuration Manager', | ||
requires=['PyYAML', ], | ||
install_requires=['PyYAML', ], | ||
entry_points=dict( | ||
console_scripts=[ | ||
'kaptan = kaptan:main', | ||
], | ||
), | ||
) |