forked from kaifcodec/user-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 854 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "user-scanner"
version = "1.1.0.4"
description = "Check username availability across multiple popular platforms"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Kaif", email = "kafcodec@gmail.com"}
]
dependencies = [
"httpx[http2]>=0.27,<0.29",
"socksio>=1.0,<2",
"colorama>=0.4,<1"
]
requires-python = ">=3.10"
keywords = ["username", "checker", "availability", "social", "tech", "python", "user-scanner"]
[project.urls]
Homepage = "https://github.com/kaifcodec/user-scanner"
[project.scripts]
user-scanner = "user_scanner.__main__:main"
[tool.flit.sdist]
exclude = ["tests/", "docs/", ".github/", ".git", "rm_pycache.py", "che.py", ".gitignore"]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]