Skip to content

Commit e20902f

Browse files
committed
Bump version to 0.1.3
1 parent 30f8d3e commit e20902f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1+
import os
12
from setuptools import setup
23

4+
5+
this_directory = os.path.abspath(os.path.dirname(__file__))
6+
with open(os.path.join(this_directory, 'README.md'), "r") as f:
7+
long_description = f.read()
8+
9+
310
setup(
411
name="pytest_func_cov",
512
packages=["pytest_func_cov"],
6-
version="0.1.2",
13+
version="0.1.3",
714
license="MIT",
815
description="Pytest plugin for measuring function coverage",
16+
long_description=long_description,
17+
long_description_content_type='text/markdown',
918
author="Radu Ghitescu",
1019
author_email="radu.ghitescu@gmail.com",
1120
url="https://github.com/radug0314/pytest_func_cov",

0 commit comments

Comments
 (0)