forked from Rippling/rippling-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (20 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (20 loc) · 752 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "rippling_cli"
version = "0.1.0"
description = "The Rippling Command Line Interface (Rippling CLI) is a unified tool to programmatically involves Rippling services. The Flux commands as part of the Rippling CLI allow both first-party and third-party App developers to create, manage and deploy Rippling-hosted integrations."
readme = "README.md"
authors = ["Rippling Apps <apps@rippling.com>"]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
pkce = "^1.0.3"
urllib3 ="^2.2.1"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
mypy = "^1.7.1"
[tool.poetry.scripts]
rippling = "rippling_cli.cli.main:cli"