Skip to content

Commit e0d2d3a

Browse files
committed
Improve setup.py
1 parent 46411ca commit e0d2d3a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(fname):
1010
setup(
1111
name="trace-dkey",
1212
author="Prince Roshan",
13-
version='0.0.7',
13+
version='0.0.8',
1414
author_email="princekrroshan01@gmail.com",
1515
url="https://github.com/Agent-Hellboy/trace-dkey",
1616
description=("Python library to trace path of a particular key inside a nested dict"),
@@ -32,4 +32,13 @@ def read(fname):
3232
"Operating System :: OS Independent",
3333
],
3434
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+
},
3543
)
44+

0 commit comments

Comments
 (0)