-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (26 loc) · 1015 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
[project]
name = "censaurus"
version = "0.1.1.2"
dynamic = ["dependencies"]
authors = [
{name="Ethan Singer", email="[email protected]"},
]
description = "a python tool built for retrieving, structuring, and enriching the Congressional Record, the official record of the proceedings of the United States Congress. crec wraps the GovInfo API — a product of the U.S. Government Publishing Office — with an intuitive and powerful API of its own."
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ['crec']
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/singerep/crec"
"Documentation" = "https://crec.readthedocs.io/en/latest/"
"Issues" = "https://github.com/singerep/crec/issues"