-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
44 lines (40 loc) · 1.26 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
"""Setup script for the L2MAC package."""
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).resolve().parent
long_description = (here / "README.md").read_text(encoding="utf-8")
requirements = ((here /
"requirements.txt").read_text(encoding="utf-8").splitlines())
extras_require = {}
extras_require = {
"dev": [
"pylint~=3.0.3",
"black~=23.3.0",
"isort~=5.12.0",
"pre-commit~=3.6.0",
"pytype~=2024.10.11",
]
}
setup(
name="l2mac",
version="0.0.3",
description="The LLM Automatic Computer Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/samholt/l2mac",
author="Sam Holt",
author_email="[email protected]",
license="MIT",
keywords=
"l2mac multi-agent programming gpt llm metaprogramming automatic computer"
" llm-automatic",
packages=find_packages(exclude=["contrib", "docs", "examples", "tests*"]),
include_package_data=True,
package_data={
"": ["*.yaml"],
},
python_requires=">=3.9",
install_requires=requirements,
extras_require=extras_require,
entry_points={"console_scripts": ["l2mac = l2mac.core:app"]},
)