-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes bundled package name to "keystone-api-client" (#17)
- Loading branch information
1 parent
1f3bbe9
commit 7fa46b7
Showing
1 changed file
with
11 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,21 @@ requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "keystone-client" | ||
name = "keystone-api-client" | ||
version = "0.0.0" | ||
description = "Python client for the Keystone API" | ||
authors = ["djperrefort <[email protected]>"] | ||
readme = "README.md" | ||
packages = [ | ||
{ include = "keystone_client" }, | ||
] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Typing :: Typed" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
|