-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 1.01 KB
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
37
38
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bln"
description = "Python client for the biglocalnews.org API"
authors = [
{ name = "Big Local News", email = "biglocalnews@stanford.edu" }
]
readme = "README.md"
requires-python = ">= 3.10"
keywords = ["Big Local News", "BLN", "BLN API", "Big Local News API"]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"requests",
"retry2",
]
dynamic = ["version"]
[project.scripts]
# warn-transformer = "warn_transformer.cli:cli"
[project.urls]
"Documentation" = "https://bln-python-client.readthedocs.io"
"Maintainer" = "https://github.com/biglocalnews"
"Source" = "https://github.com/biglocalnews/bln-python-client"
"Tracker" = "https://github.com/biglocalnews/bln-python-client/issues"
[tool.setuptools_scm]
local_scheme = "no-local-version"
# ... other project metadata fields as listed in:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/