-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gordon Shotwell
committed
Dec 19, 2023
1 parent
1145627
commit 37f3bd9
Showing
3 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,21 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "shiny_validate" | ||
version = "0.1" | ||
requires = ["shiny >= 0.6.0", "numpy"] | ||
authors = [{name = "Gordon Shotwell", email = "[email protected]"}] | ||
|
||
[tool.setuptools] | ||
packages = ["shiny_validate"] | ||
include-package-data = true | ||
zip-safe = false | ||
zip-safe = false | ||
|
||
[tool.poetry] | ||
name = "shiny_validate" | ||
version = "0.1" | ||
authors = ["Gordon Shotwell <[email protected]>"] | ||
description = "Input Validation for Shiny apps" | ||
readme = "README.md" | ||
|
||
|
||
[tool.poetry.dependencies] | ||
shiny = "0.6" | ||
|