-
Notifications
You must be signed in to change notification settings - Fork 215
/
pyproject.toml
52 lines (42 loc) · 1.32 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
46
47
48
49
50
51
52
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "advertools"
authors = [
{name = "Elias Dabbas", email = "[email protected]"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"pandas>=1.1.0",
"pyasn1>=0.4",
"scrapy>=2.5.0",
"twython>=3.8.0",
"pyarrow>=5.0.0",
"requests>=2.25.0",
]
dynamic = ["description", "version"]
readme = "README.rst"
keywords = ["seo", "marketing", "advertising", "adwords", "bingads", "search-engine-marketing", "online-marketing", "digital-marketing", "digital-advertising", "keywords"]
[project.scripts]
advertools = "advertools.cli:main"
adv = "advertools.cli:main"
[project.urls]
Homepage = "https://adver.tools"
Documentation = "https://advertools.readthedocs.io"
Repository = "https://github.com/eliasdabbas/advertools.git"
Issues = "https://github.com/eliasdabbas/advertools/issues"
Changelog = "https://github.com/eliasdabbas/advertools/blob/master/HISTORY.rst"
[tool.ruff]
target-version = "py37"
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set.
extend-select = ["E501"]
select = ["E4", "E7", "E9", "F", "B"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]