-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (75 loc) · 1.62 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
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptchangelog"
description = "Automatically generate a changelog using AI"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Xavier Jodoin", email = "python@jodoin.me" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = [
"openai>=2.8.1",
"httpx>=0.27.0",
"gitpython>=3.1.40",
"configparser>=6.0.0",
"rich>=13.9.0",
"textual>=0.58.0",
]
dynamic = ["version"]
[project.urls]
"GitHub" = "https://github.com/xjodoin/gptchangelog"
[project.scripts]
gptchangelog = "gptchangelog.__main__:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
]
docs = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-revision-date-localized-plugin",
]
release = [
"build",
"twine",
]
[tool.setuptools.dynamic]
version = { attr = "gptchangelog.__version__" }
[tool.setuptools.packages.find]
include = ["gptchangelog", "gptchangelog.*"]
[tool.setuptools.package-data]
gptchangelog = ["templates/*.txt"]
[tool.isort]
profile = "black"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-revision-date-localized-plugin",
"build",
"twine",
"textual",
]