-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 985 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
[tool.poetry]
name = "cad_tickers"
version = "1.5.3"
description = "Various Stock Utilties Created by me"
authors = ["David Li <davidli012345@gmail.com>"]
maintainers = ["David Li <davidli012345@gmail.com>"]
license = "MIT"
readme = "ReadMe.md"
repository = "https://github.com/FriendlyUser/cad_tickers"
documentation = "https://readthedocs.org/projects/cad-tickers/"
keywords = ["Poetry",
"Stock Tickers",
"Requests",
"CSE",
"TSX"]
include = [
"cad_tickers/data_files",
"cad_tickers/data_files/references.csv"
]
[tool.poetry.dependencies]
python = "^3.7.1"
requests = "^2.24.0"
coverage = "^5.2"
beautifulsoup4 = "^4.9.1"
lxml = "^4.5.2"
pandas = "^1.3.0"
xlrd = "^1.2.0"
openpyxl = "^3.0.7"
random-user-agent = "^1.0.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1"
sphinx = "^3.2.1"
pytest-cov = "^2.10.1"
sphinx_rtd_theme = "^0.5.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"