-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
78 lines (70 loc) · 1.96 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
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
[tool.poetry]
name = "proxyhub"
version = "0.0.1-alpha5"
description = "An advanced [Finder | Checker | Server] tool for proxy servers, supporting both HTTP(S) and SOCKS protocols."
authors = ["ForceFledgling - Din Grogu <pvenv@icloud.com>"]
repository = "https://github.com/ForceFledgling/proxyhub"
homepage = "http://proxyhub.readthedocs.io/"
documentation = "http://proxyhub.readthedocs.io/"
license = "Apache-2.0"
readme = "README.md"
packages = []
include = ["proxyhub/data/*.mmdb"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Internet :: Proxy Servers',
'License :: OSI Approved :: Apache Software License',
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.8.5"
aiodns = "^3.0.0"
attrs = "^22.1.0"
maxminddb = "^2.2.0"
cachetools = "^5.2.0"
click = "^8.1.3"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
isort = "^5.10.1"
pytest = "^7.1.2"
pytest-asyncio = "^0.19.0"
pytest-runner = "^6.0.0"
alabaster = "^0.7.12"
pytest-isort = "^3.0.0"
pytest-flake8 = "^1.1.1"
pytest-mock = "^3.8.2"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
proxyhub = "proxyhub.cli:cli"
[tool.black]
py36 = true
line-length = 88
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.venv # virtualenv
| build
| dist
)
)
'''
[tool.pytest.ini_options]
flake8-ignore = ['*.py']
isort_ignore = ['*.py']