Skip to content

Commit 7a97e3a

Browse files
committed
use setuptools
1 parent 4b33265 commit 7a97e3a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup
4+
# from distutils.core import setup
5+
6+
with open("README.md", "r") as fh:
7+
long_description = fh.read()
48

59
setup(
610
name='ffprobe-python',
7-
version='1.0.0',
11+
version='1.0.3',
812
description="""
913
A wrapper around ffprobe command to extract metadata from media files.
1014
""",
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
1117
author='Simon Hargreaves',
1218
author_email='[email protected]',
1319
maintainer='Mark Ma',

0 commit comments

Comments
 (0)