generated from labteral/python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ['setuptools>=64.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'llmdk'
dynamic = ['version']
description = 'LLM Development Kit for common APIs'
readme = 'README.md'
authors = [{ name = 'Rodrigo Martínez (brunneis)', email = '[email protected]' }]
license = { file = 'LICENSE' }
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = '>=3.10'
dependencies = [
'requests',
'openai',
'anthropic',
'groq',
'ollama',
'huggingface-hub',
]
[tool.setuptools]
packages = ['llmdk', 'llmdk.providers']
[tool.setuptools.dynamic]
version = {attr = 'llmdk.version.__version__'}