Mercurial > personal > weather-server
comparison pyproject.toml @ 38:d5a18ecebf47
Convert to Hatch pyproject.toml.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 01 Apr 2025 15:46:16 -0400 |
parents | |
children | b77c8e7d2742 |
comparison
equal
deleted
inserted
replaced
37:e60d641009e5 | 38:d5a18ecebf47 |
---|---|
1 [build-system] | |
2 requires = ["hatchling", "hatch-vcs"] | |
3 build-backend = "hatchling.build" | |
4 | |
5 [project] | |
6 name = "weather-server" | |
7 dynamic = ["version"] | |
8 requires-python = ">=3.7" | |
9 dependencies = [ | |
10 "attrs", | |
11 "flask", | |
12 "flup", | |
13 "pymongo", | |
14 "pytz", | |
15 ] | |
16 | |
17 [tool.hatch.version] | |
18 source = "vcs" | |
19 | |
20 [tool.hatch.build.targets.sdist] | |
21 include = [ | |
22 "/weather_server", | |
23 ] |