We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b33265 commit 7a97e3aCopy full SHA for 7a97e3a
setup.py
@@ -1,13 +1,19 @@
1
#!/usr/bin/env python
2
3
-from distutils.core import setup
+from setuptools import setup
4
+# from distutils.core import setup
5
+
6
+with open("README.md", "r") as fh:
7
+ long_description = fh.read()
8
9
setup(
10
name='ffprobe-python',
- version='1.0.0',
11
+ version='1.0.3',
12
description="""
13
A wrapper around ffprobe command to extract metadata from media files.
14
""",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
author='Simon Hargreaves',
18
author_email='[email protected]',
19
maintainer='Mark Ma',
0 commit comments