-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
56 lines (48 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hey_mindsdb"
version = "0.4.0"
description = "Your AI-powered pair programming friend"
authors = [{ name = "Sadra Yahyapour", email = "lnxpylnxpy@gmail.com" }]
requires-python = ">=3.8"
dependencies = [
"typer >= 0.12.3",
"rich >= 13.7.1",
"openai >= 1.30.1",
"platformdirs >= 4.2.2",
"keyring >= 25.3.0"
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
hey = "hey.cli:app"
[project.optional-dependencies]
dev = ["coverage", "pytest-cookies"]
[project.urls]
Repository = "https://github.com/lnxpy/hey"
[tool.hatch.build.targets.wheel]
packages = ["hey"]
[tool.bumpversion]
current_version = "0.4.0"
commit = "true"
tag = "true"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
[[tool.bumpversion.files]]
filename = "hey/__init__.py"