-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "proxyproviders"
version = "0.1.1"
description = "A unified interface for different proxy providers"
readme = "README.md"
authors = [{ name = "David Teather", email = "[email protected]" }]
license = { file = "LICENSE" }
dependencies = ["requests"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = ["pytest", "sphinx", "black", "mypy", "coverage", "types-requests", "toml"]
[tool.setuptools.packages.find]
where = ["proxyproviders"]
[tool.coverage.run]
branch = true
source = ["proxyproviders"]
omit = ["tests/*"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
black = "^25.1.0"
pytest = "^8.3.4"
coverage = "^7.6.12"
types-requests = "^2.32.0.20241016"
toml = "^0.10.2"
responses = "^0.25.6"