-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=70", "wheel", "build>=1.2"]
build-backend = "setuptools.build_meta"
[project]
name = "bdbag"
dynamic = ["version", "readme"]
description = "Big Data Bag Utilities"
authors = [
{ name = "Mike D'Arcy" }
]
maintainers = [
{ name = "USC Information Sciences Institute, Informatics Systems Research Division", email = "isrd-support@isi.edu" }
]
# license = "Apache-2.0"
# license-files = ["LICENSE"]
requires-python = ">=3.8,<4"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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",
]
dependencies = [
"pytz",
"tzlocal",
"certifi",
"packaging",
"requests",
"bagit==1.9.0",
"bagit-profile==1.3.1",
]
[project.optional-dependencies]
boto = ["boto3>=1.9.5", "botocore", "awscli"]
globus = ["globus_sdk>=2,<4"]
gcs = ["google_cloud_storage"]
[project.scripts]
bdbag = "bdbag.bdbag_cli:main"
"bdbag-utils" = "bdbag.bdbag_utils:main"
[tool.setuptools]
packages = { find = { exclude = ["test"] } }
license-files = ["LICENSE"]
[tool.setuptools.package-data]
bdbag = ["profiles/*.*"]
[tool.setuptools.dynamic]
version = { attr = "bdbag.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.pytest.ini_options]
testpaths = ["test"]
[tool.flake8]
select = ["E901","E203","E741","E999","F821","F822","F823","W504"]
exclude = ["examples/*"]
[tool.coverage.run]
branch = true
include = [
"bdbag/*",
"bdbag/fetch/*",
]
omit = [
"bdbag/bdbag_utils.py",
"bdbag/bdbag_cli.py",
"bdbag/bdbag_ro.py",
"bdbag/bdbagit_profile.py",
"bdbag/fetch/transports/fetch_globus.py",
"bdbag/fetch/transports/fetch_boto3.py",
"bdbag/fetch/transports/fetch_gcs.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = true