-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (44 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
""" Package script to create a python dist
"""
from setuptools import setup
from ffmpeg_gui import __version__ as version
from ffmpeg_gui import __name__ as name
requirements = []
extra_requirements = {"dev": ["pylint>=2.0.0",
"wheel>=0.37.0",
"twine>=3.4.0"]}
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name=name,
version=version,
url='https://github.com/ThorpeJosh/ffmpeg-gui',
license='MIT',
author='Joshua Thorpe',
author_email='[email protected]',
description='FFMPEG GUI for some common and simple AV operations',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['ffmpeg', 'gui', 'audio', 'video', 'convert', 'stitch'],
packages=['ffmpeg_gui'],
include_package_data=True,
install_requires=requirements,
extras_require=extra_requirements,
python_requires='>=3.7',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS'
],
entry_points={
'gui_scripts': [
'ffmpeg-gui=ffmpeg_gui.__main__:run'
],
},
)