forked from AbanteAI/mentat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 854 Bytes
/
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
import os
from pathlib import Path
from setuptools import find_packages, setup
def read_requirements(file):
with open(file, "r") as f:
return f.read().splitlines()
readme_path = os.path.join(Path(__file__).parent, "README.md")
with open(readme_path, "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="mentat-ai",
version="0.1.11",
python_requires=">=3.10",
packages=find_packages(),
install_requires=read_requirements("requirements.txt"),
package_data={
"mentat": ["default_config.json"],
},
entry_points={
"console_scripts": [
"mentat=mentat.app:run_cli",
],
},
description="AI coding assistant on your command line",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache-2.0",
)