-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (91 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (91 loc) · 2.09 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "apifreaks"
[tool.poetry]
name = "apifreaks"
version = "1.0.2"
description = "Official Python SDK for the Apifreaks API platform."
readme = "README.md"
authors = ["Apifreaks <support@apifreaks.com>"]
keywords = [
"apifreaks",
"api",
"sdk",
"ip-geolocation",
"whois",
"dns",
"ssl",
"email-validation",
"phone-validation",
"pdf",
"web-scraping",
"ocr",
"timezone",
"currency",
"vat",
"user-agent",
"weather"
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
packages = [
{ include = "apifreaks", from = "src" }
]
[project.urls]
Repository = "https://github.com/api-freaks/af-python-sdk"
[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.21.2"
pydantic = ">=1.9.2"
typing_extensions = ">=4.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "==1.13.0"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
ruff = "==0.11.5"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
plugins = ["pydantic.mypy"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E",
"F",
"I"
]
ignore = [
"E402",
"E501",
"E711",
"E712",
"E721",
"E722",
"E731",
"F821",
"F841"
]
[tool.ruff.lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"