-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
31 lines (27 loc) · 954 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
[tool.poetry]
name = "seo-position-tracker"
homepage = "https://github.com/dimitryzub/seo-position-tracker"
version = "1.5.1"
description = "A simple Python package for SEO position tracking from Google and other search engines."
authors = ["Dimitry Zub <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
google-search-results = "^2.4.2"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
seo = "seo_position_tracker.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"