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>
32 lines
737 B
Python
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",
|
|
],
|
|
},
|
|
)
|