-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
35 lines (33 loc) · 955 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
33
34
35
from setuptools import setup, find_packages
from plotbitrate import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='plotbitrate',
version=__version__,
packages=find_packages(),
description='A simple bitrate plotter for media files',
long_description=long_description,
long_description_content_type="text/markdown",
author='Eric Work',
author_email='work.eric@gmail.com',
license='BSD',
url='https://github.com/zeroepoch/plotbitrate',
py_modules=['plotbitrate'],
classifiers=[
'Topic :: Multimedia :: Sound/Audio',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
keywords='ffprobe bitrate plot',
python_requires='>=3.6',
entry_points={
'console_scripts': [
'plotbitrate = plotbitrate:main'
]
},
install_requires=[
'matplotlib',
'pyqt6'
]
)