-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (70 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;;
;; locallm package
;;
[metadata]
name = locallm
version = 0.5.3
description = An api to query local language models using different backends
long_description = file:README.md
long_description_content_type = text/markdown
author = emencia
author_email = [email protected]
url = https://github.com/emencia/locallm
project_urls =
Source Code = https://github.com/emencia/locallm
Issue Tracker = https://github.com/emencia/locallm/issues
license = MIT
keywords = Python
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
include_package_data = True
install_requires =
pydantic
requests
sseclient-py
llama-cpp-python
packages = find:
zip_safe = True
[options.extras_require]
dev =
pytest
quality =
flake8
tox
twine
[options.packages.find]
where = .
exclude=
data
docs
tests
examples
[wheel]
universal = 0
;;
;; Third-party packages configuration
;;
[flake8]
max-line-length = 88
exclude = .git,./venv/,./build/,./.envs/,./paver/,./tests/,__pycache__
[tool:pytest]
addopts = -vv
python_files =
*.py
testpaths =
tests
[tox:tox]
minversion = 3.4.0
envlist = py{38,310}
[testenv]
commands =
pip install -e .[dev]
pytest -vv tests