-
Notifications
You must be signed in to change notification settings - Fork 821
/
pyproject.toml
51 lines (44 loc) · 1.34 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pytrends"
version = "4.9.2"
description = "Pseudo API for Google Trends"
urls = {homepage = "https://github.com/dreyco676/pytrends"}
requires-python = ">=3.7"
authors = [
{name = "John Hogue"},
{name = "Burton DeWilde"},
{email = "dreyco676@gmail.com"}
]
license = {text = "Apache 2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License"
]
keywords = [
"google trends api search"
]
dynamic = ["readme", "dependencies"]
[tool.setuptools]
packages = ["pytrends"]
# Taken from https://github.com/pypa/setuptools/blob/d138ec08efc2dbaebb8752e215e324f38bd807a2/setuptools/tests/config/test_pyprojecttoml.py#L68
[tool.setuptools.dynamic.readme]
file = ["README.md"]
content-type = "text/markdown"
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
precision = 2
show_missing = true
[tool.pytest.ini_options]
addopts = "--cov pytrends/"