-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
42 lines (37 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "truecallerpy"
version = "1.0.3"
description = "TruecallerPy is a Python package that provides functionalities to interact with the Truecaller API. It allows you to perform login, OTP verification, and phone number search using Truecaller."
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"truecallerpy",
"truecaller",
"search",
"phone",
"number",
"phonenumber",
"information",
"mobile",
]
authors = [{ name = "Sumith Emmadi", email = "[email protected]" }]
maintainers = [{ name = "Sumith Emmadi", email = "[email protected]" }]
classifiers = [
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = ["httpx", "phonenumbers", "questionary", "colorama"]
[project.urls]
Homepage = "https://github.com/sumithemmadi/truecallerpy"
Documentation = "https://github.com/sumithemmadi/truecallerpy"
Repository = "https://github.com/sumithemmadi/truecallerpy"
Changelog = "https://github.com/sumithemmadi/truecallerpy"
"Bug Tracker" = "https://github.com/sumithemmadi/truecallerpy/issues"
[project.scripts]
truecallerpy = "truecallerpy.cli:main"