-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (58 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (58 loc) · 1.49 KB
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
# See: https://raw.githubusercontent.com/pr3d4t0r/sopel_ai/master/LICENSE.txt
[build-system]
requires = [ 'setuptools>=6.1', 'wheel' ]
build-backend = 'setuptools.build_meta'
[metadata]
url = 'https://github.com/pr3d4t0r/sopel_ai'
[project]
name = 'sopel-ai'
version = '1.3.7'
authors = [
{ name = 'The SopelAI team', email = 'sopel_ai@cime.net' }
]
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Communications :: Chat',
'Topic :: Utilities',
]
description = 'Sopel AI - an LLM enhanced chat bot plug-in'
dynamic = [
'dependencies',
]
keywords = [
'ai',
'bot',
'irc',
'llm',
'plugin',
'sopel'
]
# license = 'BSD-3-Clause'
readme = 'README.md'
requires-python = '>=3.9'
[project.entry-points.'sopel.plugins']
sopel_ai = 'sopel_ai.plugin'
# [project.scripts]
# motoko = 'motoko:main'
[project.urls]
Homepage = 'https://github.com/pr3d4t0r/sopel_ai'
'Bug Tracker' = 'https://github.com/pr3d4t0r/sopel_ai/issues'
[tool.pytest.ini_options]
addopts = '-sv'
testpaths = [
'tests'
]
[tool.setuptools]
include-package-data = true
packages = [
'sopel_ai',
# 'tests', # because test modules import objects from other test modules
]
[tool.setuptools.dynamic]
dependencies = { file = 'requirements.txt' }