This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (69 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "upoly"
version = "0.1.34"
description = "High performance asyncio REST client for polygon.io"
authors = ["Riley <[email protected]>"]
license = "AGPL"
readme = "README.md"
keywords = ["asyncio", "polygon", "polygonio", "python", "client-python", "http2"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.9"
python-dotenv = "^0.15.0"
orjson = "^3.5.0"
nest-asyncio = "^1.4.3"
pandas-market-calendars = "^1.6.1"
joblib = "^1.0.1"
numpy = "^1.20.1"
pandas = "^1.2.2"
aiohttp = "^3.7.4"
aiodns = "^2.0.0"
Brotli = "^1.0.9"
cchardet = "^2.1.7"
# setuptools = "^0.49.0"
[tool.poetry.dev-dependencies]
aiofiles = "^0.6.0"
# ipykernel = "^5.4.3"
black = "^20.8b1"
pre-commit = "^2.9.3"
pytest = "^6.2.1"
# isort = "^5.7.0"
# rope = "^0.18.0"
coverage = "^5.3.1"
# mypy = "^0.800"
# pytest-watch = "^4.2.0"
# radon = "^4.3.2"
pytest-cov = "^2.11.1"
pytest-asyncio = "^0.14.0"
pytest-datadir = "^1.3.1"
pytest-mock = "^3.5.1"
# cytoolz = "^0.11.0"
# pyarrow = "^2.0.0"
# matplotlib = "^3.3.3"
# fsspec = "^0.8.5"
# s3fs = "^0.5.2"
# numba = "^0.52.0"
# dask = "^2021.1.1"
# jupyter = "^1.0.0"
# jupyterlab = "^3.0.5"
# dask-labextension = "^5.0.0"
# jupyterlab-lsp = "^3.2.0"
# python-language-server = {extras = ["all"], version = "^0.36.2"}
grayskull = "^0.8.5"
poetry2conda = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"