-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 820 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 820 Bytes
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
from setuptools import setup, find_packages # type: ignore
from ollama_shell import __version__, __program__
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name=__program__,
version=__version__,
description="A ollama CLI program to produce shell commands",
url="https://github.com/diversen/ollama-shell",
author="Dennis Iversen",
author_email="dennis.iversen@gmail.com",
license="MIT",
packages=find_packages(exclude=("tests",)),
install_requires=REQUIREMENTS,
entry_points={
"console_scripts": [
"ollama-shell = ollama_shell.cli:main",
],
},
classifiers=[
"Development Status :: 1 - Planning",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
],
)