-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
44 lines (38 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="trace-dkey",
author="Prince Roshan",
version='0.0.8',
author_email="princekrroshan01@gmail.com",
url="https://github.com/Agent-Hellboy/trace-dkey",
description=("Python library to trace path of a particular key inside a nested dict"),
long_description=read("README.rst"),
license="MIT",
package_dir={'': 'src'},
packages=['trace_dkey'],
keywords=[
"tracer","dict-key-path-finder"
],
install_requires=["click"],
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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'],
},
)