1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Bob Carroll f2e60b4095 add long description for pypi 2020-11-20 17:43:21 -05:00
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# This file is part of the libcfbf distribution (https://github.com/rcarz/libcfbf).
# This file is part of the libcfbf distribution (https://git.rcarz.net/bobc/libcfbf).
# Copyright (c) 2020 Bob Carroll (bob.carroll@alum.rit.edu)
#
# This program is free software: you can redistribute it and/or modify

View File

@ -1,10 +1,15 @@
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='libcfbf',
version='0.2',
version='0.3',
description="An implementation of Microsoft's Compound File Binary Format",
url='https://github.com/rcarz/libcfbf',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://git.rcarz.net/bobc/libcfbf',
author='Bob Carroll',
author_email='bob.carroll@alum.rit.edu',
py_modules=['libcfbf'],