From 2b0cb002346b25879406167927c841bb6abc3621 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Tue, 27 Feb 2018 00:21:01 +0200 Subject: Bump to v0.1.0 --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 461c120..0d1f033 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,13 @@ +from pathlib import Path + from setuptools import setup, find_packages -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: +with open(str(Path(__file__).resolve().parents[0] / 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='viewstate', - version='0.0.1', + version='0.1.0', description='.NET viewstate decoder', long_description=long_description, homepage='https://github.com/yuvadm/viewstate', -- cgit v1.3.1