-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[metadata]
name = "textPlay"
version = "0.1.4"
author = "Rakesh Kanna S"
author_email = "[email protected]"
description = "A package for many unique text tools, to make your text beautiful."
url = "https://github.com/rakeshkanna-rk/textPlay"
license = "Apache License 2.0"
keywords = ['text tools', 'cli', 'terminal', 'google search', 'web search',
'morse code', 'decode', 'encode', 'box', 'colors', 'options',
'password generator', 'progress bar', 'encryption animation',
'files', 'backend', 'source code']
[options]
packages = ["textPlay"]
python_requires = ">=3.6"
install_requires = [
"beautifulsoup4>=4.12.3",
"requests>=2.31.0",
"keyboard>=0.13.5",
]
[options.entry_points]
console_scripts = [
"textplay = textPlay:textPlay_cli"
]
[project_urls]
GitHub = "https://github.com/rakeshkanna-rk/textPlay"
Python_Package_Index = "https://pypi.org/project/textPlay/"