File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import os
2- from setuptools import setup
2+ from setuptools import setup , find_packages
33import codecs
44
55long_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.'
77if 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
1212setup (name = 'publib' ,
1313 version = __version__ ,
1717 author = 'Erwan Pannier' ,
18181919 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.
You can’t perform that action at this time.
0 commit comments