-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (33 loc) · 872 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
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "web-observatory"
version = "1.2.1"
authors = [
{ name="Eric Nost", email="[email protected]" },
]
description = "Python package for collecting and analyzing webpages"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"google_api_python_client==2.44.0",
"items==0.6.5",
"pandas>=1.3.4",
"psycopg2==2.8.6",
"Requests==2.31.0",
"Scrapy==2.6.1",
"tldextract==3.2.0",
"wayback>=0.3.2",
"pyopenssl==22.0.0",
"cryptography<38",
"Twisted==22.10.0"
]
[project.urls]
Homepage = "https://github.com/ericnost/observatory"
Issues = "https://github.com/ericnost/observatory/issues"