-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
50 lines (42 loc) · 1.32 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
49
50
# sheldon woodward
# 2/25/18
"""Setuptools File"""
from os.path import abspath, dirname, join
from setuptools import setup
this_dir = abspath(dirname(__file__))
with open(join(this_dir, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup_requires = [
'setuptools_scm'
]
install_requires = [
'bitmath',
'iso-639'
]
setup(
name='pymkv',
description='A Python wrapper for mkvmerge. It provides support for muxing, splitting, linking, chapters, tags, '
'and attachments through the use of mkvmerge.',
long_description=long_description,
url='https://github.com/sheldonkwoodward/pymkv',
author='Sheldon Woodward',
author_email='[email protected]',
license='MIT',
packages=['pymkv'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Utilities',
],
keywords='wrapper',
python_requires='>=3.6',
use_scm_version=True,
setup_requires=setup_requires,
install_requires=install_requires,
)