-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
64 lines (58 loc) · 1.57 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
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "peopledatalabs"
version = "4.1.2"
description = "Official Python client for the People Data Labs API"
homepage = "https://www.peopledatalabs.com"
repository = "https://github.com/peopledatalabs/peopledatalabs-python"
documentation = "https://docs.peopledatalabs.com"
keywords = [
"data enrichment",
"people data labs",
"person enrichment",
"company enrichment",
"search",
]
authors = ["People Data Labs <hello@peopledatalabs.com>"]
readme = "README.md"
license = "MIT License"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/peopledatalabs/peopledatalabs-python/issues"
"Source Code" = 'https://github.com/peopledatalabs/peopledatalabs-python'
[tool.poetry.dependencies]
python = "^3.8"
email-validator = ">=1.1,<3.0"
pydantic = "^2"
requests = "^2"
[tool.poetry.dev-dependencies]
autoflake = "^1.7"
black = "^24.8.0"
coverage = "^7.6.1"
docformatter = "^1.7"
flake8 = "^5.0.4"
pylint = "^3.2.7"
pytest = "^8.3.3"
pyupgrade = "^3.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "WARNING"
log_cli_format = """ \
%(asctime)s \
%(name)s \
[%(levelname)8s] \
%(message)s \
(%(filename)s:\
%(lineno)s)
"""
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
line-length = 79