Skip to content

Commit f356f38

Browse files
committed
0.2.1: reliable deployment on Pypi
1 parent 5430190 commit f356f38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import os
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
import codecs
44

55
long_description = 'Produce publication-level quality images on top of Matplotlib, '+\
66
'with a simple call to a couple functions at the start and end of your script.'
77
if os.path.exists('README.rst'):
88
long_description = codecs.open('README.rst', encoding="utf-8").read()
99

10-
__version__ = '0.1.13'
10+
__version__ = '0.2.1'
1111

1212
setup(name='publib',
1313
version=__version__,
@@ -17,7 +17,7 @@
1717
author='Erwan Pannier',
1818
author_email='[email protected]',
1919
license='CeCILL-2.1',
20-
packages=['publib'],
20+
packages=find_packages(),
2121
install_requires=[
2222
'matplotlib>=1.4.1',
2323
#'numpy', # for testing only. Should make this an optional requirement.

0 commit comments

Comments
 (0)