Skip to content

Commit

Permalink
Merge 746f976 into a844c0f
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne authored Dec 10, 2017
2 parents a844c0f + 746f976 commit 09ac7c6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 19 deletions.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
include CONTRIBUTORS.txt
include install.bat
include LICENSE.txt
include README.html
include README.md
include README.rst
include setup.py

graft doc
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE.txt
20 changes: 1 addition & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
version = __version__
desc = "Python package to parse, read and write Microsoft OLE2 files (Structured Storage or Compound Document, Microsoft Office) - Improved version of the OleFileIO module from PIL, the Python Image Library."
# read long description from disk in restructuredtext format:
long_desc = open('olefile/README.rst').read()
long_desc = open('README.rst').read()
author = __author__
author_email = "https://www.decalage.info/contact"
url = "https://www.decalage.info/python/olefileio"
Expand Down Expand Up @@ -123,23 +123,6 @@ def rglob(top, prefix='', pattern='*'):
return list(riglob(top, prefix, pattern))




package_data={
'olefile': [
'README.rst',
'README.html',
'LICENSE.txt',
'CONTRIBUTORS.txt',
# 'olefile.html',
]
# doc folder: md, html, png
# + rglob('olefile/doc', 'doc', '*.html')
# + rglob('olefile/doc', 'doc', '*.md')
# + rglob('olefile/doc', 'doc', '*.png'),
}


#--- data files ---------------------------------------------------------------

# not used for now.
Expand Down Expand Up @@ -239,7 +222,6 @@ def main():
license=license,
## package_dir=package_dir,
packages=packages,
package_data = package_data,
py_modules = modules,
download_url=download_url,
# data_files=data_files,
Expand Down

0 comments on commit 09ac7c6

Please sign in to comment.