Skip to content

Commit 8051e85

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
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)