-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 874 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
35
36
37
[project]
name = "devhub-cli"
version = "0.1.2"
description = "CLI interface to devhub"
readme = "README.md"
authors = [{name = "Daniel Rust"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.8"
classifiers = []
dependencies = [
"click ~=8.1.3",
"python-dotenv ~=1.0.0",
"djlint ~=1.34.0",
"pyyaml ~=6.0",
"requests-oauthlib ~=2.0.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/devhub/devhub-cli"
Changelog = "https://github.com/devhub/devhub-cli/releases"
Issues = "https://github.com/devhub/devhub-cli/issues"
CI = "https://github.com/devhub/devhub-cli/actions"
[project.scripts]
devhub = "devhub.cli:cli"
devhub-cli = "devhub.cli:cli"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
where = ["."]
include = ["devhub*"]