-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (36 loc) · 1.04 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
[tool.poetry]
name = "geneagrapher-core"
version = "0.1.3"
description = "Functions for getting records and building graphs from the Math Genealogy Project."
license = "MIT"
authors = ["David Alber <alber.david@gmail.com>"]
readme = "README.md"
repository = "https://github.com/davidalber/geneagrapher-core"
packages = [{include = "geneagrapher_core"}]
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.11.1"
types-beautifulsoup4 = "^4.11.6.4"
aiohttp = "^3.9.3"
aiodns = "^3.0.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pytest = "^7.2.1"
mypy = "^0.991"
flake8 = "^6.0.0"
pytest-asyncio = "^0.20.3"
[tool.poetry.group.examples]
optional = true
[tool.poetry.group.examples.dependencies]
redis = "^4.6.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autodoc-typehints = "^2.0.0"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"live: tests that request live data from the Math Genealogy Project",
]