Skip to content

Commit

Permalink
2019.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
netanelrevah committed Jul 28, 2019
1 parent 47aa9f5 commit 4730c52
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@

REQUIREMENTS = ['pytest', 'six']

README = open('./README.md').read()
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf8')

setup(
name='pytest-parametrization',
version='2019.1.4',
py_modules=['parametrization'],
provides=['parametrization'],
description='Simpler PyTest parametrization',
long_description=README,
long_description=long_description,
long_description_content_type='text/markdown',
author="Singular Labs, Inc",
author_email='devs@singular.net',
url='https://github.com/singular-labs/parametrization',
Expand Down

0 comments on commit 4730c52

Please sign in to comment.