-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 751 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 751 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aspera-client"
version = "0.1.0"
description = "IBM Aspera Node API client CLI for file listing and high-speed transfer"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Yoshihiro OKUMURA", email = "orrisroot@gmail.com"},
]
dependencies = [
"requests>=2.34.2",
"pyyaml>=6.0.3",
"cryptography>=49.0.0",
"rich>=15.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.15.21",
"pytest>=9.1.1",
]
[project.scripts]
aspera = "aspera_client.cli:main"
[tool.setuptools.packages.find]
include = ["aspera_client*"]
[tool.setuptools.package-data]
aspera_client = ["data/bypass_rsa.der"]