-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (33 loc) · 958 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
37
38
39
[tool.poetry]
name = "typeclasses"
version = "0.2.1"
description = "Extensible methods a la Haskell's typeclasses."
authors = ["John Freeman <[email protected]>"]
documentation = "https://python-typeclasses.readthedocs.io/"
repository = "https://github.com./thejohnfreeman/python-typeclasses/"
readme = "README.rst"
license = "ISC"
packages = [{include = "typeclasses", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.doc.dependencies]
sphinx = "^1.8"
sphinx_rtd_theme = "^0.4.3"
toml = "^0.10.2"
[tool.poetry.group.dev.dependencies]
sphinx-autobuild = "^0.7.1"
tox = "^4.12.1"
[tool.poetry.group.lint.dependencies]
mypy = "^1.8.0"
pydocstyle = "^3.0"
pylint = "^2.3"
yapf = "^0.40.2"
[tool.poetry.group.test.dependencies]
hypothesis = "^6.98.1"
pytest = "^7.4.4"
pytest-asyncio = "^0.23.4"
pytest-cov = "^4.1.0"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"