-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1009 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 1009 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
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "rentry"
version = "2.0.0"
description = "Python client and command-line tool for the rentry.co markdown paste service"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
keywords = ["rentry", "markdown", "paste", "pastebin", "cli", "api"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
"Topic :: Text Processing :: Markup",
]
dependencies = []
[project.urls]
Homepage = "https://rentry.co"
Source = "https://github.com/radude/rentry"
[project.scripts]
rentry = "rentry:main"
[tool.setuptools]
# The standalone CLI at the repo root ships as a top-level module so the
# console script reuses it; the library lives in src/rentry_client.
py-modules = ["rentry"]
packages = ["rentry_client"]
[tool.setuptools.package-dir]
rentry_client = "src/rentry_client"