Skip to content

Commit

Permalink
Reduce cruft in large_image distribution file
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Dec 7, 2021
1 parent 7766059 commit 23878c0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Change Log

## Version 1.8.11

### Changes
- Reduce cruft in large_image distribution file ([#718](../../pull/718))

## Version 1.8.10

### Changes
- Improve library dependencies in setup.py ([#710](../../pull/710), [#715](../../pull/715))
- Improve library dependencies in setup.py ([#710](../../pull/710), [#715](../../pull/715))

## Version 1.8.9

Expand Down
8 changes: 5 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
exclude *
prune *
include LICENSE
include README.rst
include setup.py

graft large_image
graft docs
prune test
global-exclude *.py[co] *.cmake __pycache__ node_modules
graft large_image
graft large_image.egg-info
global-exclude *.py[co] __pycache__ node_modules
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import platform

from setuptools import find_packages, setup
from setuptools import setup

with open('README.rst') as readme_file:
readme = readme_file.read()
Expand Down Expand Up @@ -80,7 +80,7 @@ def prerelease_local_scheme(version):
extras_require=extraReqs,
include_package_data=True,
keywords='large_image',
packages=find_packages(exclude=['test', 'test.*', 'girder']),
packages=['large_image'],
url='https://github.com/girder/large_image',
python_requires='>=3.6',
zip_safe=False,
Expand Down

0 comments on commit 23878c0

Please sign in to comment.