-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
47 lines (39 loc) · 1.17 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
[tool.poetry]
name = "ipython-gpt"
version = "0.0.6"
description = "A Jupyter/IPython extension to use ChatGPT"
authors = ["Santiago Basulto <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/santiagobasulto/ipython-gpt"
repository = "https://github.com/santiagobasulto/ipython-gpt"
keywords = ["ipython", "jupyter", "chatgpt", "openai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: IPython",
"Programming Language :: Python",
"Topic :: Utilities",
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
ipython = "^8.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
pytest = "^7.3.1"
nox = "^2022.11.21"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-mock = "^3.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.ruff]
ignore-init-module-imports = true
fix = true
select = ["E", "F", "W", "I", "RUF"] # "D" to be add back before publishing on pypi
ignore = ["E501"] # line too long | Black take care of it
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.pydocstyle]
convention = "google"