-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
46 lines (45 loc) · 1.2 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
44
45
46
from setuptools import setup, find_packages
setup(
name="mirror-flowers",
version="1.0.0",
description="AI-driven Code Security Audit Tool",
author="Ky0toFu",
author_email="", # 如果有的话
url="https://github.com/Ky0toFu/Mirror-Flowers",
packages=find_packages(),
install_requires=[
"fastapi",
"uvicorn",
"python-multipart",
"aiofiles",
"httpx",
"openai",
"chromadb",
"sentence-transformers",
"pydantic",
"pydantic-settings",
"python-dotenv",
"langchain",
"langchain-community",
],
extras_require={
"dev": [
"pytest",
"pytest-asyncio",
"black",
"isort",
"flake8",
"mypy",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security",
],
python_requires=">=3.8",
)