-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46411ca
commit e0d2d3a
Showing
1 changed file
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ def read(fname): | |
setup( | ||
name="trace-dkey", | ||
author="Prince Roshan", | ||
version='0.0.7', | ||
version='0.0.8', | ||
author_email="[email protected]", | ||
url="https://github.com/Agent-Hellboy/trace-dkey", | ||
description=("Python library to trace path of a particular key inside a nested dict"), | ||
|
@@ -32,4 +32,13 @@ def read(fname): | |
"Operating System :: OS Independent", | ||
], | ||
include_package_data=True, | ||
entry_points={ | ||
'console_scripts': [ | ||
'trace-dkey=trace_dkey.cli:main', | ||
], | ||
}, | ||
package_data={ | ||
'trace_dkey': ['images/*', 'README.rst'], | ||
}, | ||
) | ||
|