-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
64 lines (51 loc) · 1.46 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = ollama-benchmark
version = attr: ollama_benchmark.__version__
author = Anthony Monthe
author_email = [email protected]
url = https://github.com/cloudmercato/ollama-benchmark
project_urls =
summary = Handy tool for evaluate ollama model performance
description_file = file: README.rst
long_description = file: README.rst
description_content_type = text/x-rst; charset=UTF-8
license = MIT
requires_dist =
setuptools
classifier =
Development Status :: 4 - Beta
Environment :: Console
Environment :: GPU :: NVIDIA CUDA
Environment :: MacOS X
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Internet :: File Transfer Protocol (FTP)
Topic :: Internet :: WWW/HTTP
Topic :: System :: Networking
Topic :: System :: Benchmark
keywords = benchmark, machine learning, deep learning
[options]
zip_safe = False
include_package_data = True
package_dir=
packages=find:
install_requires =
test_suite = ollama_benchmark.tests
tests_require =
[options.extras_require]
[options.entry_points]
console_scripts =
ollama-benchmark = ollama_benchmark.main:main
[coverage:run]
omit = ollama_benchmark/tests/*
branch = True
source = ollama_benchmark
[coverage:report]
show_missing = true
exclude_lines =
noqa
NotImplemented