diff --git a/codemeta.json b/codemeta.json index 1667189..37b0dce 100644 --- a/codemeta.json +++ b/codemeta.json @@ -26,5 +26,5 @@ "keywords": "space-charge, grain-boundaries, solid-electrolytes, interfaces, defects, poisson-boltzmann", "license": "MIT", "title": "pyscses", - "version": "0.9.2" + "version": "0.9.3" } diff --git a/pyscses/__init__.py b/pyscses/__init__.py index 1f04780..ecc0ae4 100644 --- a/pyscses/__init__.py +++ b/pyscses/__init__.py @@ -1 +1 @@ -__version__ = '0.9.2' +__version__ = '0.9.3' diff --git a/setup.py b/setup.py index 7cc64ac..01b2416 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,14 @@ from setuptools import setup from pyscses import __version__ as VERSION +def remove_img_tags(data): + p = re.compile(r'') + return p.sub('', data) + readme = 'README.md' long_description = open( readme ).read() +# Removing images seems easier than trying to get them to work on PyPI. +long_description = remove_img_tags( long_desription ) config = { 'description': 'PYthon Space-Charge Site Explicit Solver',