Skip to content

Commit

Permalink
use setuptools find_packages, exclude tests, docs and examples from d…
Browse files Browse the repository at this point in the history
…istributions
  • Loading branch information
bollwyvl committed Jan 2, 2021
1 parent 1f5508e commit ddcfb54
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import pathlib
from setuptools import setup
from setuptools import (
find_packages,
setup,
)
from setupbase import (
get_version, find_packages
get_version,
)

here = pathlib.Path('.')
Expand All @@ -17,7 +20,7 @@
long_description = README,
long_description_content_type='text/markdown',
version = VERSION,
packages = find_packages('.'),
packages = find_packages('.', exclude=['tests*', 'docs*', 'examples*']),
include_package_data = True,
author = 'Jupyter Development Team',
author_email = 'jupyter@googlegroups.com',
Expand Down

0 comments on commit ddcfb54

Please sign in to comment.