-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.01 KB
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 = "massive"
version = "0.0.0"
description = "Official Massive (formerly Polygon.io) REST and Websocket client."
authors = ["massive.com"]
license = "MIT"
homepage = "https://massive.com"
repository = "https://github.com/massive-com/client-python"
documentation = "https://massive.com/docs"
keywords = [
"massive",
"free",
"rest",
"stock",
"market",
"data",
"api",
"massive.com",
"websocket",
"client"
]
packages = [
{ include = "massive" }
]
[tool.poetry.dependencies]
python = "^3.9"
urllib3 = ">=1.26.9"
websockets = ">=14.0"
certifi = ">=2022.5.18,<2027.0.0"
[tool.poetry.dev-dependencies]
black = "^24.8.0"
mypy = "^1.19"
types-urllib3 = "^1.26.25"
Sphinx = "^7.4.7"
sphinx-rtd-theme = "^3.1.0"
# keep this in sync with docs/requirements.txt for readthedocs.org
sphinx-autodoc-typehints = "^2.3.0"
types-certifi = "^2021.10.8"
types-setuptools = "^81.0.0"
pook = "^2.1.4"
orjson = "^3.11.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"