-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.65 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
57
58
59
60
61
[tool.poetry]
name = "monad-std"
version = "0.10.0"
description = "A library of rust-styled monad utils for python."
authors = ["Embers-of-the-Fire <[email protected]>"]
homepage = "https://embers-of-the-fire.github.io/monad-std/"
repository = "https://github.com/Embers-of-the-Fire/monad-std"
keywords = ["monad", "functional", "rust", "pure-python", "fp"]
license = "MIT OR Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.8"
pytest = "^8.0.0"
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.5.2"
mkdocstrings = { extras = ["python"], version = "^0.22.0" }
mkdocs-material = "^9.2.3"
funct = "^0.9.2"
pytest = "^8.0.0"
coverage = "^7.3.0"
pytest-cov = "^4.1.0"
devtools = "^0.12.2"
# mkdocs-git-committers-plugin-2 = "^1.1.2"
# mkdocs-git-authors-plugin = "^0.7.2"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "tuna"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "default"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::FutureWarning",
]