-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 985 Bytes
/
Copy pathsetup.py
File metadata and controls
41 lines (40 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name='beets-plexsync',
version='0.1',
description='beets plugin to sync with Plex',
long_description=open('README.md').read(),
author='Alok Saboo',
author_email='',
url='https://github.com/arsaboo/beets-plexsync',
license='MIT',
platforms='ALL',
packages=find_packages(include=['beetsplug', 'beetsplug.*']),
python_requires='>=3.10',
extras_require={
'test': ['pytest'],
},
install_requires=[
'beets>=2.13.0',
'plexapi>=4.13.4',
'jiosaavn-python>=0.2',
'spotipy',
'ollama',
'openai',
'pydantic>=2.0.0',
'python-dateutil',
'confuse',
'requests',
'beautifulsoup4',
'pillow',
'json_repair',
'agno>=1.2.16',
'instructor>=1.0',
'tavily-python',
'exa_py',
'brave-search',
'scipy',
'numpy',
'pytz',
],
)