Skip to content

Commit ae28db1

Browse files
committed
Update packaging and version
1 parent a492a0f commit ae28db1

File tree

5 files changed

+57
-57
lines changed

5 files changed

+57
-57
lines changed

casefy/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
__version__ = "0.1.7"
2+
13
from .casefy import (
24
camelcase,
35
pascalcase,

casefy/casefy.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Utilities for string case conversion."""
22

3-
__version__ = "0.1.2"
4-
53
import re
64
from typing import List
75

pyproject.toml

Lines changed: 55 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,58 @@
11
[build-system]
22
requires = [
3-
"setuptools>=61.0",
4-
"wheel"
3+
"hatchling",
4+
]
5+
build-backend = "hatchling.build"
6+
7+
[project]
8+
name = "casefy"
9+
dynamic = [
10+
"version",
11+
]
12+
authors = [
13+
{ name="Diego Miguel Lozano", email="[email protected]" },
14+
]
15+
maintainers = [
16+
{ name="Diego Miguel Lozano", email="[email protected]" },
17+
]
18+
description = "Utilities for string case conversion."
19+
readme = "README.md"
20+
license = {file = "LICENSE"}
21+
requires-python = ">=3.6"
22+
keywords = [
23+
"case",
24+
"casing",
25+
"casefy",
26+
"case-converter",
27+
]
28+
classifiers = [
29+
"Development Status :: 5 - Production/Stable",
30+
"Intended Audience :: Developers",
31+
"Operating System :: OS Independent",
32+
"License :: OSI Approved :: MIT License",
33+
"Topic :: Text Processing",
34+
"Topic :: Utilities",
35+
"Programming Language :: Python :: 3",
36+
"Programming Language :: Python :: 3.6",
37+
"Programming Language :: Python :: 3.7",
38+
"Programming Language :: Python :: 3.8",
39+
"Programming Language :: Python :: 3.9",
40+
"Programming Language :: Python :: 3.10",
41+
]
42+
43+
[project.urls]
44+
Homepage = "https://github.com/dmlls/python-casefy"
45+
Documentation = "https://dmlls.github.io/python-casefy/"
46+
"GitHub Issues" = "https://github.com/dmlls/python-casefy/issues"
47+
"GitHub Repo" = "https://github.com/dmlls/python-casefy/"
48+
49+
[tool.hatch.metadata]
50+
allow-direct-references = true
51+
52+
[tool.hatch.version]
53+
path = "casefy/__init__.py"
54+
55+
[tool.hatch.build.targets.wheel]
56+
packages = [
57+
"casefy",
558
]
6-
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 0 additions & 23 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)