generated from tomchen/example_pypi_package
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (33 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0", "requests>=2.28.2"]
build-backend = "setuptools.build_meta"
[project]
name = "py-gutenberg"
version = "1.0.3"
authors = [
{ name="Peter Rauscher", email="[email protected]" },
]
description = "A library to access the Project Gutenberg API"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[project.urls]
"Homepage" = "https://github.com/peterrauscher/gutenberg-py"
"Bug Tracker" = "https://github.com/peterrauscher/gutenberg-py/issues"
"Source Code" = "https://github.com/peterrauscher/gutenberg-py"
"Funding" = "https://ko-fi.com/peterrauscher"