forked from polygon-io/client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1006 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
40
41
42
43
44
45
46
47
[tool.poetry]
name = "polygon-api-client"
version = "0.0.0"
description = "Official Polygon.io REST and Websocket client."
authors = ["polygon.io"]
license = "MIT"
homepage = "https://polygon.io"
repository = "https://github.com/polygon-io/client-python"
documentation = "https://polygon.io/docs"
keywords = [
"polygon",
"free",
"rest",
"stock",
"market",
"data",
"api",
"polygon.io",
"websocket",
"client"
]
packages = [
{ include = "polygon" }
]
[tool.poetry.dependencies]
python = "^3.8"
urllib3 = "^1.26.9"
websockets = "^10.3"
certifi = "^2022.5.18"
[tool.poetry.dev-dependencies]
black = "^22.12.0"
mypy = "^0.991"
types-urllib3 = "^1.26.25"
Sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.0.0"
# keep this in sync with docs/requirements.txt for readthedocs.org
sphinx-autodoc-typehints = "^1.19.2"
types-certifi = "^2021.10.8"
types-setuptools = "^65.6.0"
pook = "^1.0.2"
orjson = "^3.8.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"