Mercurial > personal > weather-server
annotate pyproject.toml @ 39:b77c8e7d2742
Use zoneinfo rather than pytz.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Tue, 01 Apr 2025 15:54:21 -0400 |
parents | d5a18ecebf47 |
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 ] |