Skip to content

Commit

Permalink
Improve setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Agent-Hellboy committed Oct 17, 2024
1 parent 46411ca commit e0d2d3a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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'],
},
)

0 comments on commit e0d2d3a

Please sign in to comment.