libretime/shared/setup.py
dependabot[bot] f6fe318278 chore: bump loguru from 0.5.3 to 0.6.0 in /shared
Bumps [loguru](https://github.com/Delgan/loguru) from 0.5.3 to 0.6.0.
- [Release notes](https://github.com/Delgan/loguru/releases)
- [Changelog](https://github.com/Delgan/loguru/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/Delgan/loguru/compare/0.5.3...0.6.0)

---
updated-dependencies:
- dependency-name: loguru
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-01 04:23:05 +02:00

32 lines
737 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",
# Pinned until https://github.com/Delgan/loguru/issues/581 is fixed
"loguru==0.6.0",
"pydantic",
"pyyaml",
],
extras_require={
"dev": [
"types-pyyaml",
],
},
)