-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (63 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=61.0",]
build-backend = "setuptools.build_meta"
[project]
name = "fred-py-api"
version = "1.2.0"
authors = [
{ name="Zachary Spar", email="[email protected]" },
]
description = "A fully featured FRED Command Line Interface & Python API client library."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.17.3",
"click>=7.0",
]
[project.optional-dependencies]
ci = [
"black==22.6.0",
"coverage==6.4.2",
]
dev = [
"black==22.6.0",
"coverage==6.4.2",
"tox==3.25.1",
"sphinx==7.2.6"
]
[project.scripts]
fred = "fred.cli:__main__.run_fred_cli"
categories = "fred.cli:categories.run_categories_cli"
releases = "fred.cli:releases.run_releases_cli"
series = "fred.cli:series.run_series_cli"
sources = "fred.cli:sources.run_sources_cli"
tags = "fred.cli:tags.run_tags_cli"
[project.urls]
"Homepage" = "https://github.com/zachspar/fred_py_api"
"Bug Tracker" = "https://github.com/zachspar/fred_py_api/issues"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
]
[tool.coverage.html]
directory = "coverage_html_report"
[tool.black]
line-length = 120