-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
81 lines (72 loc) · 1.53 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
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
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "davinci-functions"
description = "Library to ask OpenAI GPT for generating objects on the Python runtime."
readme = "README.md"
requires-python = ">=3.8, <3.12"
license = {text = "MIT License"}
authors = [
{name = "Yusuke Oda", email = "[email protected]"}
]
keywords = [
"cloud storage",
"gcloud",
"google",
"google cloud",
"storage",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"dill>=0.3.6",
"openai>=0.27.0",
]
dynamic = [
"version"
]
[project.optional-dependencies]
dev = [
"black>=22.10",
"flake8>=5.0",
"isort>=5.10",
"mypy>=0.991",
"pyproject-flake8>=5.0",
"pytest>=7.1",
"pytest-mock>=3.10.0",
]
mypy = [
"mypy>=0.991",
"pytest>=7.1",
"pytest-mock>=3.10.0",
]
[project.urls]
Homepage = "https://github.com/odashi/davinci-functions"
"Bug Tracker" = "https://github.com/odashi/davinci-functions/issues"
[tool.hatch.build]
include = [
"*.py",
]
exclude = [
"*_test.py",
]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["src/davinci_functions"]
[tool.hatch.version]
path = "src/davinci_functions/_version.py"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[tool.isort]
profile = "black"
[tool.mypy]
strict = true