We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f8d3e commit e20902fCopy full SHA for e20902f
setup.py
@@ -1,11 +1,20 @@
1
+import os
2
from setuptools import setup
3
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
10
setup(
11
name="pytest_func_cov",
12
packages=["pytest_func_cov"],
- version="0.1.2",
13
+ version="0.1.3",
14
license="MIT",
15
description="Pytest plugin for measuring function coverage",
16
+ long_description=long_description,
17
+ long_description_content_type='text/markdown',
18
author="Radu Ghitescu",
19
author_email="radu.ghitescu@gmail.com",
20
url="https://github.com/radug0314/pytest_func_cov",
0 commit comments