2015-06-24 01:02:55 +02:00
|
|
|
import os
|
|
|
|
|
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
|
2020-12-30 14:17:50 +01:00
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
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",
|
2021-12-23 23:55:05 +01:00
|
|
|
packages=["libretime_analyzer"],
|
2020-12-30 14:17:50 +01:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2021-12-23 23:55:05 +01:00
|
|
|
"libretime-analyzer=libretime_analyzer.cli:main",
|
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=[
|
2021-06-11 10:27:17 +02:00
|
|
|
"mutagen>=1.31.0",
|
2021-06-11 09:44:38 +02:00
|
|
|
"pika>=1.0.0",
|
2020-12-30 14:17:50 +01:00
|
|
|
"file-magic",
|
|
|
|
"requests>=2.7.0",
|
2021-10-17 18:50:43 +02:00
|
|
|
"rgain3==1.1.1",
|
2021-07-15 10:27:23 +02:00
|
|
|
"PyGObject>=3.34.0",
|
|
|
|
# If this version is changed, it needs changing in the install script too
|
2020-12-30 14:17:50 +01:00
|
|
|
"pycairo==1.19.1",
|
|
|
|
],
|
2021-09-10 13:45:27 +02:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
|
|
|
"distro",
|
|
|
|
],
|
|
|
|
},
|
2020-12-30 14:17:50 +01:00
|
|
|
zip_safe=False,
|
|
|
|
)
|