Skip to content

Commit

Permalink
🔖 bump to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
perillaroc committed Feb 29, 2020
1 parent db07f5b commit 76189de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions nwpc_graphics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
from nwpc_graphics._config import Config, load_config_from_env
from nwpc_graphics._logging import get_logger

__version__ = "0.2.0"


nwpc_graphics_config = load_config_from_env()
logger = get_logger()
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# coding=utf-8
from setuptools import setup, find_packages
import io
import re

with io.open("nwpc_graphics/__init__.py", "rt", encoding="utf8") as f:
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)

setup(
name='nwpc-graphics',

version='0.1.0',
version=version,

description='NWPC Graphics project.',
long_description=__doc__,
Expand Down

0 comments on commit 76189de

Please sign in to comment.