# HG changeset patch # User Paul Fisher # Date 1743536776 14400 # Node ID d5a18ecebf4768cb44d5c6c56650e9f3b83622a6 # Parent e60d641009e539c5e0e4240ff86736f2741e1a91 Convert to Hatch pyproject.toml. diff -r e60d641009e5 -r d5a18ecebf47 .hgignore --- 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 diff -r e60d641009e5 -r d5a18ecebf47 pyproject.toml --- /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", +] diff -r e60d641009e5 -r d5a18ecebf47 requirements.txt --- 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 diff -r e60d641009e5 -r d5a18ecebf47 setup.py --- 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, -)