-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
36 lines (31 loc) · 910 Bytes
/
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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "option"
version = "2.1.0"
description = "Rust like Option and Result types in Python"
authors = ["Peijun Ma <peijun.ma@protonmail.com>"]
readme = "README.md"
license = "MIT"
repository="/~https://github.com/MaT1g3R/option"
homepage="https://mat1g3r.github.io/option/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
include = ['option/py.typed', 'option/**/*.py', 'LICENSE']
[tool.poetry.dependencies]
python = ">=3.7,<4"
typing-extensions = { version = ">=4.0", python = "<3.8" }
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
mypy = "^0.991"
Sphinx = "^5.3.0"
pylint = "^2.13.9"
bump2version = "^1.0.0"
[tool.mypy]
strict = true
show_column_numbers = true
show_error_codes = true