-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.22 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.22 KB
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
from setuptools import setup, find_packages
from pathlib import Path
long_description = Path("README.md").read_text(encoding="utf-8")
requirements = [
l.strip() for l in Path("requirements.txt").read_text().splitlines()
if l.strip() and not l.startswith("#")
]
setup(
name="codelens",
version="1.0.0",
author="Lohith",
description="AI-powered code intelligence agent — semantic search, grep, file ops via LangGraph + ChromaDB",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lohith-1204/CodeLens",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.10",
install_requires=requirements,
entry_points={
"console_scripts": [
"codelens=cli:cli",
],
},
include_package_data=True,
)