forked from nomic-ai/pygpt4all
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 841 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
from pathlib import Path
from setuptools import setup, find_packages
# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pygpt4all",
version="1.0.1",
author="Abdeladim Sadiki",
description="Official Python CPU inference for GPT4All language models based on llama.cpp and ggml",
long_description=long_description,
ext_modules=[],
zip_safe=False,
python_requires=">=3.8",
packages=find_packages('.'),
package_dir={'': '.'},
long_description_content_type="text/markdown",
license='MIT',
# project_urls={
# 'Documentation': '',
# 'Source': '',
# 'Tracker': '',
# },
install_requires=["pyllamacpp==1.0.7", "pygptj"],
# extras_require={"all": [""]},
)