Skip to content

Commit

Permalink
Merge pull request #2 from erwanp/develop
Browse files Browse the repository at this point in the history
0.2.1: reliable deployment on Pypi
  • Loading branch information
erwanp committed Apr 9, 2018
2 parents 792cd7f + f356f38 commit 9da3474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os
from setuptools import setup
from setuptools import setup, find_packages
import codecs

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

__version__ = '0.1.13'
__version__ = '0.2.1'

setup(name='publib',
version=__version__,
Expand All @@ -17,7 +17,7 @@
author='Erwan Pannier',
author_email='erwan.pannier@gmail.com',
license='CeCILL-2.1',
packages=['publib'],
packages=find_packages(),
install_requires=[
'matplotlib>=1.4.1',
#'numpy', # for testing only. Should make this an optional requirement.
Expand Down

0 comments on commit 9da3474

Please sign in to comment.