-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·25 lines (25 loc) · 960 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
from setuptools import setup, find_packages
setup(
name="lobster",
version="0.3.1",
packages=["lobster"],
package_data={'': ['LICENSE']},
package_dir={'lobster': 'lobster'},
entry_points={'console_scripts' : ['lobster=lobster.__main__:main']},
install_requires=['pafy>=0.5.2', 'pydub'],
author="Josue Ortega",
author_email="[email protected]",
description="Split audio files into tracks with a single command",
long_description=open('README.md', 'rt').read(),
license="MIT",
keywords="audio track edit cut youtube ffmpeg mp3 ogg split music download",
url="https://github.com/noahfx/lobster",
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
],
)