Mercurial > personal > weather-server
changeset 38:d5a18ecebf47
Convert to Hatch pyproject.toml.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 01 Apr 2025 15:46:16 -0400 |
parents | e60d641009e5 |
children | b77c8e7d2742 |
files | .hgignore pyproject.toml requirements.txt setup.py |
diffstat | 4 files changed, 25 insertions(+), 22 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Tue Apr 01 15:41:56 2025 -0400 +++ b/.hgignore Tue Apr 01 15:46:16 2025 -0400 @@ -1,4 +1,5 @@ syntax: glob +.venv .eggs .mypy_cache .vscode @@ -6,3 +7,4 @@ venv **/__pycache__ *.egg-info +dist
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pyproject.toml Tue Apr 01 15:46:16 2025 -0400 @@ -0,0 +1,23 @@ +[build-system] +requires = ["hatchling", "hatch-vcs"] +build-backend = "hatchling.build" + +[project] +name = "weather-server" +dynamic = ["version"] +requires-python = ">=3.7" +dependencies = [ + "attrs", + "flask", + "flup", + "pymongo", + "pytz", +] + +[tool.hatch.version] +source = "vcs" + +[tool.hatch.build.targets.sdist] +include = [ + "/weather_server", +]
--- a/requirements.txt Tue Apr 01 15:41:56 2025 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -attrs -flask -flup -pymongo -pytz
--- a/setup.py Tue Apr 01 15:41:56 2025 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -import setuptools - -setuptools.setup( - name='weather-server', - version='0.1.4', - packages=setuptools.find_packages(), - python_requires='>=3.7', - install_requires=[ - 'attrs', - 'flask', - 'flup', - 'pymongo', - 'pytz', - ], - setup_requires=['wheel'], - include_package_data=True, -)