-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (62 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
75 lines (62 loc) · 1.9 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "awsistants"
version = "0.1.0"
authors = ["fordnox <fordnox@gmail.com>"]
description = "awsistants - Awesome System Prompts Assistants python package"
homepage = "https://github.com/awesome-assistants/awsistants-python"
repository = "https://github.com/awesome-assistants/awsistants-python"
keywords = ["llm", "ai", "ai-prompts", "chatbot", "gpt"]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = ["awsistants/assistants.json"]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
towncrier = "^23.6.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
black = "^23.11.0"
[project.urls]
Homepage = "https://github.com/awesome-assistants/awsistants-python"
Issues = "https://github.com/awesome-assistants/awsistants-python/issues"
[tool.towncrier]
filename = "changelog.md"
title_format = "## awsistants {version} ({project_date})"
underlines = ["", "", ""]
issue_format = "[#{issue}](https://github.com/awesome-assistants/awsistants-python/pulls/{issue})"
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "improvement"
name = "Improvements"
showcontent = true
[[tool.towncrier.type]]
directory = "fix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "docs"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = false