-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.27 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
[build-system]
requires = [
'setuptools==74.0.0',
'wheel==0.44.0',
'toml>=0.10.2'
]
build-backend = "setuptools.build_meta"
[tool.flit.metadata]
module = "proxylists"
author = "Jesus Lara Gimenez"
author-email = "[email protected]"
home-page = "https://github.com/phenobarbital/proxylists"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Typing :: Typed",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
]
description-file = "README.md"
requires-python = ">=3.9.16"
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
filterwarnings = [
"error",
'ignore:The loop argument is deprecated since Python 3\.8, and scheduled for removal in Python 3\.10:DeprecationWarning:asyncio',
]
[tool.build]
manylinux-x86_64 = "manylinux_2_12_x86_64"
manylinux-aarch64 = "manylinux_2_12_aarch64"