-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.27 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
[tool.poetry]
name = "rustshed"
version = "0.5.0"
description = "Rust types in Python."
authors = ["Paweł Rubin <[email protected]>"]
keywords = ["rust", "result", "option"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/pawelrubin/rustshed"
repository = "https://github.com/pawelrubin/rustshed"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
]
include = ["rustshed/py.typed"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.dev-dependencies]
black = "^23.0.0"
coverage = "^7.0.0"
ipython = "^8.7.0"
mypy = "^0.991"
pre-commit = "^2.20.0"
pylint = "^2.15.8"
pyright = "^1.1.283"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
strict = true
pretty = true
show_error_codes = true
disallow_any_unimported = true
warn_unused_ignores = false
[[tool.mypy.overrides]]
module = "tests.*"
disallow_any_unimported = false
[tool.pyright]
pythonVersion = "3.10"
include = ["rustshed", "examples", "tests"]
typeCheckingMode = "strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"