Skip to content

Commit 7c822fd

Browse files
committed
Fix wheel contents (#241)
This fixes the wheel so it only contains sphinx_js package contents.
1 parent 40d7c0f commit 7c822fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from io import open
2-
from setuptools import setup, find_packages
2+
from setuptools import setup
33

44

55
setup(
@@ -9,7 +9,7 @@
99
long_description=open('README.rst', 'r', encoding='utf8').read(),
1010
long_description_content_type="text/x-rst",
1111
license='MIT',
12-
packages=find_packages(exclude=['ez_setup']),
12+
packages=["sphinx_js"],
1313
url='https://github.com/mozilla/sphinx-js',
1414
include_package_data=True,
1515
install_requires=[

0 commit comments

Comments
 (0)