-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
36 lines (30 loc) · 975 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 = "gsc-bulk-indexer"
version = "0.1.2"
description = "Utilities for automatically submitting website pages for indexing in bulk to Google Search Console"
authors = ["Konigle Developers <developers@konigle.com>"]
maintainers = [
"Konigle Developers <developers@konigle.com>",
"Gopal Hegde <gplhegde@gmail.com>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/konigle/google-bulk-indexer"
keywords = [
"google search console", "bulk indexing", "seo",
"search engine optimization"
]
[tool.poetry.dependencies]
python = "^3.9"
google-auth = "^2.27.0"
requests = "^2.31.0"
python-dateutil = "^2.8.2"
aiohttp = "^3.9.5"
[tool.poetry.scripts]
gsc_bulk_index = 'gsc_bulk_indexer.submit:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/konigle/google-bulk-indexer"
Isssues = "https://github.com/konigle/google-bulk-indexer/issues"