Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce cruft in large_image distribution file #718

Merged
merged 1 commit into from
Dec 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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