Skip to content

Commit aff3dcf

Browse files
Published
1 parent 48fdabf commit aff3dcf

File tree

10 files changed

+120
-5
lines changed

10 files changed

+120
-5
lines changed

.gitignore

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual Environment
24+
venv/
25+
ENV/
26+
env/
27+
test_install_env/
28+
29+
# Environment variables
30+
.env
31+
32+
# IDE specific files
33+
.idea/
34+
.vscode/
35+
*.swp
36+
*.swo
37+
*~
38+
.DS_Store
39+
40+
# Local development
41+
.pytest_cache/
42+
.coverage
43+
htmlcov/
44+
45+
# PyPI credentials
46+
.pypirc
47+
48+
# Local development settings
49+
local_settings.py
50+
db.sqlite3
51+
52+
# Distribution / packaging
53+
.Python
54+
*.manifest
55+
*.spec
56+
57+
# Installer logs
58+
pip-log.txt
59+
pip-delete-this-directory.txt
60+
61+
# Unit test / coverage reports
62+
htmlcov/
63+
.tox/
64+
.nox/
65+
.coverage
66+
.coverage.*
67+
.cache
68+
nosetests.xml
69+
coverage.xml
70+
*.cover
71+
.hypothesis/
72+
.pytest_cache/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# mypy
78+
.mypy_cache/
79+
.dmypy.json
80+
dmypy.json
81+
82+
# Pyre type checker
83+
.pyre/
84+
85+
# pytype static type analyzer
86+
.pytype/

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ venv\Scripts\activate # Windows
3939
pip install -r requirements.txt
4040
pip install -e .
4141
```
42-
4342
## Setup
4443

4544
If using Gemini API, set your API key:
-151 Bytes
Binary file not shown.
-3.39 KB
Binary file not shown.
-1.48 KB
Binary file not shown.
-2.2 KB
Binary file not shown.
-2.88 KB
Binary file not shown.
-1.44 KB
Binary file not shown.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,43 @@
11
from setuptools import setup, find_packages
2+
import pathlib
3+
4+
here = pathlib.Path(__file__).parent
5+
long_description = (here / "README.md").read_text(encoding="utf-8")
26

37
setup(
4-
name="insight",
5-
version="0.1",
8+
name="insight-cli-sarang",
9+
version="0.2.1",
10+
description="A Python-based CLI tool that analyzes codebases and generates detailed reports",
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
13+
url="https://github.com/ExplainHub/Insight-Py",
14+
author="Arpit Sarang",
15+
author_email="[email protected]",
16+
license="MIT",
17+
keywords="cli, code-analysis, gemini-api, static-analysis, developer-tools",
18+
classifiers=[
19+
"Development Status :: 3 - Alpha",
20+
"Intended Audience :: Developers",
21+
"Topic :: Software Development :: Build Tools",
22+
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Environment :: Console",
28+
],
629
packages=find_packages(),
30+
python_requires=">=3.7",
731
install_requires=[
8-
"argparse",
932
"google-generativeai",
1033
],
1134
entry_points={
1235
"console_scripts": [
13-
"insight=insight.cli:main",
36+
"insight-cli=insight.cli:main",
1437
],
1538
},
39+
project_urls={
40+
"Bug Reports": "https://github.com/ExplainHub/Insight-Py/issues",
41+
"Source": "https://github.com/ExplainHub/Insight-Py",
42+
},
1643
)

0 commit comments

Comments
 (0)