-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.49 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.49 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
38
39
40
41
42
43
44
#!/usr/bin/env python3
"""
Setup script for llmcc Python package.
This allows installation via pip with automatic Rust compilation.
"""
from setuptools import setup, find_packages
setup(
name="llmcc",
version="0.2.65",
description="llmcc brings multi-depth architecture graphs for code understanding and generation.",
long_description=open("README.md").read() if __import__("os").path.exists("README.md") else "",
long_description_content_type="text/markdown",
author="llmcc contributors",
url="https://github.com/allenanswerzq/llmcc",
license="Apache-2.0",
packages=find_packages(exclude=["tests", "examples"]),
python_requires=">=3.8",
zip_safe=False,
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
"mypy>=1.0",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)