-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
# Change this to match your package name, repo name, and package folder name (they should all match)
name = "beaapi"
authors = [
{name = "Bureau of Economic Analysis", email = "developers@bea.gov"},
]
readme = "README.md"
requires-python = ">=3.9" # we only support on 3.10+
license = {text = "CC0"}
description = "BEA API Python package"
dynamic = ["classifiers","dependencies","version"]
[tool.setuptools]
packages = ["beaapi"]
[project.urls]
"Homepage" = "https://github.com/us-bea/beaapi"
"Bug Tracker" = "https://github.com/us-bea/beaapi/issues"
[tool.setuptools_scm]
[tool.setuptools.dynamic]
classifiers = {file = "classifiers.txt"}
dependencies = {file = "requirements.txt"}
## To get the typing working
[tool.setuptools.package-data]
beaapi = ["py.typed"]
# Provide optional dependencies https://setuptools.pypa.io/en/latest/userguide/dependency_management.html#optional-dependencies
[project.optional-dependencies]
dev = [
"build",
"setuptools",
"setuptools-scm",
"wheel",
"jupyter",
"python-dotenv",
"nbconvert",
"sphinx",
"nbsphinx",
"pandoc",
"unittest",
"flake8",
"mypy",
"twine",
"coverage"
]