1
0
Fork 0
libcfbf/setup.py

19 lines
689 B
Python

from setuptools import setup
setup(name='libcfbf',
version='0.2',
description="An implementation of Microsoft's Compound File Binary Format",
url='https://github.com/rcarz/libcfbf',
author='Bob Carroll',
author_email='bob.carroll@alum.rit.edu',
py_modules=['libcfbf'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Office/Business :: Office Suites',
'Topic :: Software Development :: Libraries'])