forked from ConnectedPapers/connectedpapers-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 842 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
[tool.poetry]
name = "connectedpapers-py"
version = "0.2.5"
description = "The official python client for the connected papers API."
authors = ["ConnectedPapersAdmin <admin@connectedpapers.com>", "KanHar <knaan.harpaz@gmail.com>"]
readme = "README.md"
packages = [{include = "connectedpapers"}]
repository = "https://github.com/ConnectedPapers/connectedpapers-py/"
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8.1"
requests = ">=2.0.0"
aiohttp = ">=2.0.0"
dacite = "^1.8.1"
nest-asyncio = "^1.5.7"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.4.1"
isort = "^5.12.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.6"
pytest = "^7.4.0"
flake8-pyproject = "^1.2.3"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
ignore = ["E501", "W503"]