-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1004 Bytes
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1004 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "user-scanner"
version = "1.3.6"
description = "Check username availability across multiple popular platforms"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Kaif", email = "kaifcodec@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.module]
name = "user_scanner"
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
".github/",
".git",
".gitignore",
".ruff_cache/",
"**/.ruff_cache/**",
"__pycache__/",
"**/__pycache__/**",
"*.pyc",
"rm_pycache.py",
"che.py"
]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]