-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 881 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
#!/usr/bin/python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mp3tom4b",
version="1.2",
author="David Steele",
author_email="[email protected]",
description="Convert mp3 files to an m4b audiobook",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/davesteele/mp3tom4b",
python_requires=">=3.6",
install_requires=["mutagen"],
packages=["mp3tom4b", "rippet"],
entry_points={
"console_scripts": [
"mp3tom4b.cmd = mp3tom4b.mp3tom4b:main",
"rippet.cmd = rippet.rippet:main",
],
},
classifiers=(
"Programming Language :: Python :: 3",
"LICENSE :: OSI APPROVED :: GNU GENERAL PUBLIC LICENSE V3 (GPLV3)",
"Operating System :: Linux",
),
)