We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46411ca commit e0d2d3aCopy full SHA for e0d2d3a
setup.py
@@ -10,7 +10,7 @@ def read(fname):
10
setup(
11
name="trace-dkey",
12
author="Prince Roshan",
13
- version='0.0.7',
+ version='0.0.8',
14
author_email="princekrroshan01@gmail.com",
15
url="https://github.com/Agent-Hellboy/trace-dkey",
16
description=("Python library to trace path of a particular key inside a nested dict"),
@@ -32,4 +32,13 @@ def read(fname):
32
"Operating System :: OS Independent",
33
],
34
include_package_data=True,
35
+ entry_points={
36
+ 'console_scripts': [
37
+ 'trace-dkey=trace_dkey.cli:main',
38
+ ],
39
+ },
40
+ package_data={
41
+ 'trace_dkey': ['images/*', 'README.rst'],
42
43
)
44
+
0 commit comments