|
1 | 1 | [build-system] |
2 | 2 | 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", |
5 | 58 | ] |
6 | | -build-backend = "setuptools.build_meta" |
|
0 commit comments