Skip to content

Commit 3c4ae4f

Browse files
committed
fix setup.py bug
1 parent ef83f22 commit 3c4ae4f

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,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
from setuptools import setup
3+
from setuptools import setup, find_packages
44
import os
55
import codecs
66

@@ -25,7 +25,7 @@ def read(fname):
2525
setup(
2626
name='matplotlib2tikz',
2727
version=about['__version__'],
28-
packages=['matplotlib2tikz'],
28+
packages=find_packages(),
2929
url='https://github.com/nschloe/matplotlib2tikz',
3030
download_url='https://pypi.python.org/pypi/matplotlib2tikz',
3131
author=about['__author__'],

0 commit comments

Comments
 (0)