sintonia/shared/setup.py
jo 80dfbd3179 fix(shared): set logger encoding and dont assume encoding
Older versions of python might have ascii as default, we
should not assume that the default encoding always is "utf-8"
when opening files.
2022-02-01 04:23:05 +02:00

30 lines
661 B
Python

from os import chdir
from pathlib import Path
from setuptools import setup
# Change directory since setuptools uses relative paths
here = Path(__file__).parent.resolve()
chdir(here)
setup(
name="libretime-shared",
version="1.0.0",
description="LibreTime Shared",
url="http://github.com/libretime/libretime",
author="LibreTime Contributors",
license="AGPLv3",
packages=["libretime_shared"],
package_data={"": ["py.typed"]},
install_requires=[
"click>=8.0.3",
"loguru==0.6.0",
"pydantic",
"pyyaml",
],
extras_require={
"dev": [
"types-pyyaml",
],
},
)