-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.39 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fr-toolbelt"
dynamic = ["version"]
dependencies = [
"requests>=2.32, <3.0",
"pandas>=1.5, <3.0",
"numpy>=1.20, <3.0",
"progress>=1.6, <2.0",
"cursor>=1.3, <2.0",
]
requires-python = ">= 3.10"
authors = [
{name = "Mark Febrizio", email = "[email protected]"},
]
maintainers = [
{name = "Mark Febrizio", email = "[email protected]"},
]
description = "Toolbelt of classes and functions written in Python to use with the Federal Register (FR) API."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Federal Register", "government", "api", "regulation", "regulatory", ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
[project.optional-dependencies]
test = [
"pytest>=8.0, <9.0",
]
[project.urls]
Repository = "https://github.com/mfebrizio/fr-toolbelt.git"
Issues = "https://github.com/mfebrizio/fr-toolbelt/issues"
[tool.setuptools.dynamic]
version = {attr = "fr_toolbelt.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["fr*"]
namespaces = false
[tool.pytest.ini_options]
pythonpath = "src"
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]