-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.01 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "vercel_storage"
[project]
name = "vercel_storage"
authors = [{name = "Noe Nieto", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dynamic = ["version", "description"]
requires-python = "~=3.9"
keywords = ["vercel", "api", "storage"]
dependencies = [
"requests >=2.6",
"click >= 8.1.7",
"tabulate >= 0.9.0"
]
[project.urls]
Source = "https://github.com/misaelnieto/vercel-storage"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"requests-mock[fixture]",
"mypy"
]
packaging = [
"flit"
]
[project.scripts]
vercel_blob = "vercel_storage.cli:cli"
[tool.pytest.ini_options]
testpaths = [
"tests"
]