forked from nomic-ai/pygpt4all
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (25 loc) · 913 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
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.1.0",
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': 'https://nomic-ai.github.io/pygpt4all/',
'Source': 'https://github.com/nomic-ai/pygpt4all',
'Tracker': 'https://github.com/nomic-ai/pygpt4all/issues',
},
install_requires=["pyllamacpp", "pygptj>=2.0.1"],
)