-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 952 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
35
36
37
38
39
40
"""
Setup the golem command line tool.
"""
from setuptools import setup, find_packages
setup(
name="golem",
version="0.1",
packages=find_packages(),
py_modules=[
"golem",
"util",
"azure",
"ollama",
"openai",
"azureai",
"vertex",
"anthropic",
],
entry_points={
"console_scripts": [
"golem=golem:main",
],
},
install_requires=[
# List your project dependencies here
],
author="Robert E. Blackwell",
author_email="[email protected]",
url="https://github.com/RobBlackwell/golem",
description="Use Large Language Model APIs from the command line.",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
license="GPL-3.0",
python_requires=">=3.8",
)