forked from Diaoul/enzyme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='enzyme',
version='0.4.2-dev',
license='Apache 2.0',
description='Python video metadata parser',
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
keywords='parser video metadata mkv',
url='https://github.com/Diaoul/enzyme',
author='Antoine Bertin',
author_email='[email protected]',
packages=find_packages(),
package_data={'enzyme.parsers.ebml': ['specs/matroska.xml'], 'enzyme.tests': ['parsers/ebml/test1.mkv.yml']},
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries :: Python Modules'],
test_suite='enzyme.tests.suite',
tests_require=['requests', 'PyYAML'])