feat: move timezone preference to config file (#2096)

BREAKING CHANGE: The timezone preference moved to the configuration
file.
This commit is contained in:
Jonas L 2022-09-14 12:48:08 +02:00 committed by GitHub
parent 8ef82d798e
commit 9b3207b8a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 73 additions and 15 deletions

View file

@ -10,6 +10,7 @@ setup(
packages=find_packages(exclude=["*tests*", "*fixtures*"]),
package_data={"": ["py.typed"]},
install_requires=[
"backports.zoneinfo>=0.2.1,<0.3;python_version<'3.9'",
"click~=8.0.4",
"loguru==0.6.0",
"pydantic>=1.7.4,<1.11",
@ -17,6 +18,7 @@ setup(
],
extras_require={
"dev": [
"types-backports",
"types-pyyaml",
],
},