-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 1.03 KB
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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='ebmlite',
version='1.1.0',
author='Mide Technology',
author_email='help@mide.com',
description='A lightweight, "pure Python" library for parsing EBML (Extensible Binary Markup Language) data.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MideTechnology/ebmlite',
license='MIT',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7'],
keywords='ebml binary matroska webm',
python_requires='~=2.7',
packages=setuptools.find_packages(),
package_dir={'': '.'},
package_data={
'': ['schemata/*', 'tests/*.ide', 'tests/*.mkv']
},
test_suite='tests',
)