-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
31 lines (29 loc) · 932 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
from os.path import exists
from setuptools import setup
long_description = None
if exists("README.md"):
long_description = open("README.md").read()
setup(
name="mpegdash",
packages=["mpegdash"],
description="MPEG-DASH MPD(Media Presentation Description) Parser",
long_description=long_description,
long_description_content_type='text/markdown',
author="sangwonl",
author_email="[email protected]",
version="0.4.0",
license="MIT",
zip_safe=False,
include_package_data=True,
url="https://github.com/sangwonl/python-mpegdash",
test_suite="tests.my_module_suite",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)