-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 912 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
[tool.poetry]
name = "karpet"
version = "0.4.10"
description = "Library for fetching coin/token historical data, trends and more."
authors = ["n1 <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/im-n1/karpet"
classifiers = [
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.extras]
google = ["pytrends"]
[tool.poetry.dependencies]
python = "^3.8.0"
aiohttp = "^3.6.2"
numpy = "^1.23.0"
requests = "^2.22.0"
BeautifulSoup4 = "^4.8.2"
pandas = "^1.1.5"
lxml = "^4.5.2"
pytrends = {version = "^4.9.2", optional = true}
urllib3 = "<2"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytrends = "^4.9.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"