-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 1001 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "scripturelookup"
authors = [
{name = "Samuel Bradshaw", email = "samuel.h.bradshaw@gmail.com"},
]
description = "Python and command-line utility for converting scripture references between formats."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["python", "command", "scripture", "bible", "book of mormon", "reference",]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"requests",
]
[project.urls]
Repository = "https://github.com/samuelbradshaw/python-scripture-lookup"
Issues = "https://github.com/samuelbradshaw/python-scripture-lookup/issues"
Changelog = "https://github.com/samuelbradshaw/python-scripture-lookup/releases"
[project.scripts]
scripturelookup = "scripturelookup.command_line:main_cli"
[tool.setuptools_scm]