-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (37 loc) · 1.29 KB
/
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
33
34
35
36
37
38
39
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='m4b-merge',
version='0.5.3',
url='https://github.com/djdembeck/m4b-merge',
description=(
"A tool to standardize audiobook files"
" into single m4b files with clean metadata"
" based on Audible and chapters."),
long_description=long_description,
long_description_content_type="text/markdown",
author='David Dembeck',
author_email='[email protected]',
project_urls={
"Bug Tracker": "https://github.com/djdembeck/m4b-merge/issues",
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'appdirs>=1.4.4',
'pathvalidate>=2.4.1',
'pydub>=0.25.1',
'requests>=2.24.0',
],
package_dir={"": "src"},
packages=["m4b_merge"],
python_requires=">=3.7",
entry_points={'console_scripts': ['m4b-merge = m4b_merge.__main__:main']}
)