-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.04 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
[project]
name = "SimpleAI"
version = "1.0.0"
description = ""
authors = ["James Doyle <james2doyle@gmail.com>"]
license = "MIT"
readme = "README.md"
[project.dependencies]
python = "^3.8" # Specify your Python version requirement
[project.optional-dependencies]
dev = [
"pyright", # Add pyright as a development dependency
"pyrefly", # Add pyrefly as a development dependency
"ruff", # Add ruff as a development dependency
]
# Pyright Configuration
# See https://github.com/microsoft/pyright/blob/main/docs/configuration.md
[tool.pyright]
pythonVersion = '3.8'
# Specify your source directory
include = [".", "./plugin"]
reportMissingModuleSource = "none"
reportIncompatibleMethodOverride = "none"
stubPath = "../typings"
# Ruff Configuration
# See https://docs.astral.sh/ruff/configuration/
[tool.ruff]
preview = true
line-length = 120
target-version = 'py38'
include = ["*.py", "*.pyi", "*.ipynb", "../typings/**/*.pyi"]
# [tool.pyrefly]
# project_includes = ["**/*.py", "**/*.pyi", "../typings/**/*.pyi"]
# search_path = [
# "./..."
# ]