Skip to content

Commit

Permalink
Update packaging and version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlls committed Dec 27, 2022
1 parent a492a0f commit ae28db1
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 57 deletions.
2 changes: 2 additions & 0 deletions casefy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = "0.1.7"

from .casefy import (
camelcase,
pascalcase,
Expand Down
2 changes: 0 additions & 2 deletions casefy/casefy.py
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

Expand Down
58 changes: 55 additions & 3 deletions pyproject.toml
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"
23 changes: 0 additions & 23 deletions setup.cfg

This file was deleted.

29 changes: 0 additions & 29 deletions setup.py

This file was deleted.

0 comments on commit ae28db1

Please sign in to comment.