-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
2 changed files
with
22 additions
and
4 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 |
---|---|---|
@@ -1,10 +1,23 @@ | ||
[tool.poetry] | ||
name = "casey" | ||
version = "1.0.0" | ||
description = "A simple library to support various string notation systems" | ||
authors = ["Marek Sierociński"] | ||
version = "1.0.1" | ||
description = "A simple library to support various naming conventions and convert strings from one to another" | ||
authors = [ | ||
"Marek Sierociński <[email protected]>" | ||
] | ||
license = "Apache-2.0" | ||
|
||
readme = "README.md" | ||
|
||
repository = "https://github.com/marverix/casey" | ||
homepage = "https://github.com/marverix/casey" | ||
|
||
keywords = ["naming conventions", "camelCase", "PascalCase", "kebab-case", "snake_case"] | ||
|
||
classifiers = [ | ||
"Topic :: Utilities" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" | ||
|
||
|