-
Notifications
You must be signed in to change notification settings - Fork 4
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
5 changed files
with
57 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
__version__ = "0.1.7" | ||
|
||
from .casefy import ( | ||
camelcase, | ||
pascalcase, | ||
|
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,7 +1,5 @@ | ||
"""Utilities for string case conversion.""" | ||
|
||
__version__ = "0.1.2" | ||
|
||
import re | ||
from typing import List | ||
|
||
|
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,6 +1,58 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=61.0", | ||
"wheel" | ||
"hatchling", | ||
] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "casefy" | ||
dynamic = [ | ||
"version", | ||
] | ||
authors = [ | ||
{ name="Diego Miguel Lozano", email="[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name="Diego Miguel Lozano", email="[email protected]" }, | ||
] | ||
description = "Utilities for string case conversion." | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.6" | ||
keywords = [ | ||
"case", | ||
"casing", | ||
"casefy", | ||
"case-converter", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: MIT License", | ||
"Topic :: Text Processing", | ||
"Topic :: Utilities", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dmlls/python-casefy" | ||
Documentation = "https://dmlls.github.io/python-casefy/" | ||
"GitHub Issues" = "https://github.com/dmlls/python-casefy/issues" | ||
"GitHub Repo" = "https://github.com/dmlls/python-casefy/" | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.hatch.version] | ||
path = "casefy/__init__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = [ | ||
"casefy", | ||
] | ||
build-backend = "setuptools.build_meta" |