-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
45 lines (41 loc) · 1.01 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
[tool.poetry]
name = "wayback-google-analytics"
version = "0.2.3"
description = "A tool for gathering current and historic google analytics ids from multiple websites"
authors = ["Justin Clark <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
wayback-google-analytics = "wayback_google_analytics.main:main_entrypoint"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
aiohttp = "3.8.5"
aiosignal = "1.3.1"
async-timeout = "4.0.3"
asyncio = "3.4.3"
asynctest = "0.13.0"
attrs = "23.1.0"
beautifulsoup4 = "4.12.2"
certifi = "2023.7.22"
charset-normalizer = "3.2.0"
coverage = "7.3.2"
et-xmlfile = "1.1.0"
frozenlist = "1.4.0"
idna = "3.4"
multidict = "6.0.4"
numpy = "1.26.0"
openpyxl = "3.1.2"
pandas = "2.1.1"
python-dateutil = "2.8.2"
python-dotenv = "1.0.0"
pytz = "2023.3.post1"
requests = "2.31.0"
six = "1.16.0"
soupsieve = "2.5"
tzdata = "2023.3"
urllib3 = "2.0.6"
xlsxwriter = "3.1.5"
yarl = "1.9.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"