-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
47 lines (38 loc) · 1.31 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
from setuptools import setup, find_packages
import sys
long_description = (
"This project contains a library and tools for manipulating and "
"generating metadata files that conform to the CableLabs VOD Metada 1.1 "
"specification"
)
# Install requires configparser for Python 2.x
if sys.version_info[0] < 3:
install_requires = ['configparser']
tests_require = ['mock']
else:
install_requires = []
tests_require = []
setup(
name='vod_metadata',
version='2016.1.6',
license='MIT',
url='https://github.com/bbayles/vod_metadata',
description='CableLabs VOD Metadata 1.1 library and tools',
long_description="Library and tools for CableLabs VOD Metadata 1.1",
long_description_content_type="text/x-rst",
author='Bo Bayles',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Telecommunications Industry',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='cablelabs vod metadata',
packages=find_packages(exclude=[]),
test_suite='tests',
install_requires=install_requires,
tests_require=tests_require,
package_data={'vod_metadata': ["*.ini", "*.mp4", "*.pth", "*.xml"]},
)