-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
lint.ignore= ["F403"]
[project]
name = "fun-apis-cli"
version = "0.2.0"
description = "A fun Python CLI tool for fetching random facts, animal information, quotes, and much more from various APIs."
readme = "README_PyPi.md"
authors = [
{name = "Taha Yasser Adnan", email = "[email protected]"}
]
license = {text = "MIT"}
urls = {Homepage = "https://github.com/tahadnan/Fun-APIs-CLI",Repository = "https://github.com/tahadnan/Fun-APIs-CLI"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.6"
dependencies = [
"prompt_toolkit",
"pycountry",
"requests",
"rich",
"plotext",
"platformdirs"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["fun_apis*"]
[tool.setuptools.package-data]
fun_apis = ["constants/*.json"]
[project.scripts]
fun-apis-cli = "fun_apis:main_entery"