-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.29 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
[tool.poetry]
name = "maya-stubs-distrib"
version = "0.4.1"
description = ""
authors = ["Loïc Pinsard <[email protected]>"]
repository = "https://www.github.com/Muream/maya-stubs"
[tool.poetry.dependencies]
python = "^3.9"
maya-stubgen = { path = "maya-stubgen/", develop = true }
docspec-to-jinja = { path = "docspec-to-jinja/", develop = true }
maya-stubs = { path = "maya-stubs/", develop = true }
# maya-docs = { path = "maya-docs/", develop = true }
attrs = "^22.2.0"
aiofiles = "^24.1.0"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
pylint = "^2.14.5"
[tool.poetry.group.dev.dependencies]
mayapy-launcher = "^0.1.0"
pyright = "^1.1.327"
types-pyside2 = "^5.15.2.1.6"
mypy = "^1.5.1"
types-beautifulsoup4 = "^4.12.0.6"
types-requests = "^2.31.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.9"
include = [
"maya-stubs/maya-stubs",
"maya-stubgen/maya_stubgen",
"docspec-to-jinja/docspec_to_jinja",
]
[[tool.pyright.executionEnvironments]]
root = "maya-stubs/maya-stubs"
pythonVersion = "3.7"
[tool.mypy]
strict = true
python_version = "3.9"
packages = ["maya", "docspec_to_jinja", "maya-stubgen.maya_stubgen"]
[[tool.mypy.overrides]]
module = "maya.*"
disable_error_code = ["override"]