-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 991 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 991 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "reddit-python-api"
authors = [{name = "Electronic Mango", email = "78230210+Electronic-Mango@users.noreply.github.com"}]
version = "0.12"
description="A simple Reddit Python API"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = ["httpx"]
requires-python = ">= 3.11"
keywords = ["reddit", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/Electronic-Mango/reddit-python-api"
Documentation = "https://electronic-mango.github.io/reddit-python-api"
Repository = "https://github.com/Electronic-Mango/reddit-python-api"
[tool.pytest.ini_options]
pythonpath = ["src"]