File size: 825 Bytes
9e13c5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "python_org_api_toolkit"
version = "0.1.0"
description = "A FastAPI toolkit for fetching latest Python versions, news, and jobs from Python.org.This is an api project which is not affilated with PSF."
readme = "README.md"
authors = [
    { name = "Manu11-Pro" }
]
requires-python = ">=3.14"
license = {text = "MIT"}
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]
dependencies = [
    "fastapi",
    "uvicorn",
    "requests",
    "beautifulsoup4",
]

[project.urls]
"Homepage" = "https://github.com/Manu11-Pro/python.org_api_toolkit"

[tool.setuptools]
package-dir = {"" = "src"}

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"