Skip to content

Commit 05337ad

Browse files
committed
switch build toolg
1 parent c20f67a commit 05337ad

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["poetry-core>=1.0.0"]
3+
build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "proxyproviders"
@@ -38,4 +38,3 @@ coverage = "^7.6.12"
3838
types-requests = "^2.32.0.20241016"
3939
toml = "^0.10.2"
4040
responses = "^0.25.6"
41-

setup.cfg

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[metadata]
2+
name = proxyproviders
3+
version = 0.1.0
4+
description = A unified interface for different proxy providers
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
7+
author = David Teather
8+
author_email = [email protected]
9+
license = MIT
10+
url = https://github.com/davidteather/proxyproviders
11+
classifiers =
12+
Programming Language :: Python :: 3
13+
License :: OSI Approved :: MIT License
14+
Operating System :: OS Independent
15+
16+
[options]
17+
packages = find:
18+
include_package_data = True
19+
python_requires = >=3.9
20+
21+
[options.packages.find]
22+
where = proxyproviders
23+
24+
[tool:pytest]
25+
testpaths = tests
26+
27+
[coverage:run]
28+
branch = True
29+
source = proxyproviders

0 commit comments

Comments
 (0)