2022-01-06 14:40:52 +01:00
|
|
|
from os import chdir
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2022-01-22 18:09:40 +01:00
|
|
|
# Change directory since setuptools uses relative paths
|
|
|
|
here = Path(__file__).parent.resolve()
|
2022-01-06 14:40:52 +01:00
|
|
|
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=[
|
2022-04-04 11:23:12 +02:00
|
|
|
"click~=8.0.4",
|
2022-01-31 10:17:43 +01:00
|
|
|
"loguru==0.6.0",
|
2022-07-17 19:51:27 +02:00
|
|
|
"pydantic>=1.7.4,<1.10",
|
2022-07-17 19:48:28 +02:00
|
|
|
"pyyaml>=5.3.1,<6.1",
|
2022-01-06 14:40:52 +01:00
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
"dev": [
|
|
|
|
"types-pyyaml",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|