-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 966 Bytes
/
setup.py
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
# setup.py
from setuptools import setup, find_packages
setup(
name='media-file-tools',
version='2.0.0',
description='Organize your digital media files',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Tom Sarantis',
url='https://github.com/saranti/media-file-tools',
packages=find_packages(),
py_modules=['movie_sort_to_df',
'series_details',
'common',
'find_music_dupes'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
install_requires=[
'pandas>=2.2.2',
'requests>=2.32.3',
'beautifulsoup4>=4.12.3',
'tabulate>=0.9.0',
'tinytag>=1.10.1',
'Levenshtein>=0.23.0',
],
test_suite='tests',
)