-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 840 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
import glob
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert("README.md", "rst")
except(IOError, ImportError):
long_description = open("README.md").read()
setup(
name="pybzparse",
version="0.2.0",
packages=find_packages(exclude=["test_*"]),
url="https://github.com/satyaog/pybzparse",
license="The MIT License",
author="Satya Ortiz-Gagné",
author_email="[email protected]",
description="MP4 / ISO base media file format (ISO/IEC 14496-12 - MPEG-4 Part 12) file parser",
requires=["bitstring"],
install_requires=["bitstring"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
long_description=long_description,
data_files=[("", ["README.md", ]),
("tests", glob.glob("data/*"))]
)