-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 868 Bytes
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
[tool.poetry]
name = "funml"
version = "0.3.18"
description = "A collection of utilities to help write python as though it were an ML-kind of functional language like OCaml"
authors = ["Martin <team.sopherapps@gmail.com>"]
readme = "README.md"
license = "MIT"
keywords = ["functional-programming", "ml", "piping"]
documentation = "https://sopherapps.github.io/funml"
repository = "https://github.com/sopherapps/funml"
[tool.poetry.dependencies]
python = "^3.7"
typing-extensions = "^4.4.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
black = "^22.12.0"
pre-commit = "^2.21.0"
pytest-asyncio = "^0.20.3"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocstrings = "^0.20.0"
mkdocs-material = "^9.0.6"
mdx-include = "^1.4.2"
mkdocstrings-python = "^0.8.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"