2022-01-17 09:26:30 +01:00
|
|
|
from os import chdir
|
|
|
|
from pathlib import Path
|
2015-06-24 01:02:55 +02:00
|
|
|
|
2021-06-03 15:20:39 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2015-06-24 01:02:55 +02:00
|
|
|
# Change directory since setuptools uses relative paths
|
2022-01-22 18:09:40 +01:00
|
|
|
here = Path(__file__).parent.resolve()
|
2022-01-17 09:26:30 +01:00
|
|
|
chdir(here)
|
2014-04-05 01:08:57 +02:00
|
|
|
|
2020-12-30 14:17:50 +01:00
|
|
|
setup(
|
|
|
|
name="libretime-analyzer",
|
|
|
|
version="0.1",
|
2021-09-02 14:25:50 +02:00
|
|
|
description="Libretime Analyzer",
|
2020-12-30 14:17:50 +01:00
|
|
|
author="LibreTime Contributors",
|
2021-09-02 14:25:50 +02:00
|
|
|
url="https://github.com/libretime/libretime",
|
|
|
|
project_urls={
|
|
|
|
"Bug Tracker": "https://github.com/libretime/libretime/issues",
|
|
|
|
"Documentation": "https://libretime.org",
|
|
|
|
"Source Code": "https://github.com/libretime/libretime",
|
|
|
|
},
|
2020-12-30 14:17:50 +01:00
|
|
|
license="AGPLv3",
|
2022-01-18 18:38:47 +01:00
|
|
|
packages=[
|
|
|
|
"libretime_analyzer",
|
2022-01-28 06:09:19 +01:00
|
|
|
"libretime_analyzer.pipeline",
|
2022-01-18 18:38:47 +01:00
|
|
|
],
|
2020-12-30 14:17:50 +01:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2022-01-17 09:26:30 +01:00
|
|
|
"libretime-analyzer=libretime_analyzer.main:cli",
|
2020-12-30 14:17:50 +01:00
|
|
|
]
|
|
|
|
},
|
2021-09-10 13:47:20 +02:00
|
|
|
python_requires=">=3.6",
|
2020-12-30 14:17:50 +01:00
|
|
|
install_requires=[
|
2022-07-16 22:15:25 +02:00
|
|
|
"mutagen>=1.45.1,<1.46",
|
2021-06-11 09:44:38 +02:00
|
|
|
"pika>=1.0.0",
|
2022-07-16 22:16:48 +02:00
|
|
|
"requests>=2.25.1,<2.29",
|
2022-01-28 06:09:19 +01:00
|
|
|
"typing_extensions",
|
2020-12-30 14:17:50 +01:00
|
|
|
],
|
2021-09-10 13:45:27 +02:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
|
|
|
"distro",
|
2022-01-22 16:48:32 +01:00
|
|
|
f"libretime-shared @ file://localhost{here.parent / 'shared'}",
|
2021-09-10 13:45:27 +02:00
|
|
|
],
|
|
|
|
},
|
2020-12-30 14:17:50 +01:00
|
|
|
zip_safe=False,
|
|
|
|
)
|