Mercurial > personal > weather-server
annotate pyproject.toml @ 46:74b57044b2bd default tip
Added tag v0.2.2 for changeset 10bde12a9163
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 01 Apr 2025 16:31:00 -0400 |
parents | b77c8e7d2742 |
children |
rev | line source |
---|---|
38 | 1 [build-system] |
2 requires = ["hatchling", "hatch-vcs"] | |
3 build-backend = "hatchling.build" | |
4 | |
5 [project] | |
6 name = "weather-server" | |
7 dynamic = ["version"] | |
39
b77c8e7d2742
Use zoneinfo rather than pytz.
Paul Fisher <paul@pfish.zone>
parents:
38
diff
changeset
|
8 requires-python = ">=3.9" |
38 | 9 dependencies = [ |
10 "attrs", | |
11 "flask", | |
12 "flup", | |
13 "pymongo", | |
14 ] | |
15 | |
16 [tool.hatch.version] | |
17 source = "vcs" | |
18 | |
19 [tool.hatch.build.targets.sdist] | |
20 include = [ | |
21 "/weather_server", | |
22 ] |