1
0
Fork 0
libcfbf/setup.py

24 lines
850 B
Python
Raw Normal View History

2020-05-31 18:48:56 -05:00
from setuptools import setup
2020-05-31 20:18:13 -05:00
with open('README.md', 'r') as f:
long_description = f.read()
2020-05-31 18:48:56 -05:00
setup(name='libcfbf',
2020-05-31 20:18:13 -05:00
version='0.3',
2020-05-31 18:48:56 -05:00
description="An implementation of Microsoft's Compound File Binary Format",
2020-05-31 20:18:13 -05:00
long_description=long_description,
long_description_content_type='text/markdown',
2023-11-07 18:20:23 -06:00
url='https://git.bobc.io/bobc/libcfbf',
2020-05-31 18:48:56 -05:00
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'])