File tree Expand file tree Collapse file tree 2 files changed +31
-3
lines changed
Expand file tree Collapse file tree 2 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 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 ]
66name = " proxyproviders"
@@ -38,4 +38,3 @@ coverage = "^7.6.12"
3838types-requests = " ^2.32.0.20241016"
3939toml = " ^0.10.2"
4040responses = " ^0.25.6"
41-
Original file line number Diff line number Diff line change 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+ 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
You can’t perform that action at this time.
0 commit comments