Skip to content

Commit

Permalink
Merge pull request #3 from RonnyPfannschmidt/setup_explicit_encoding
Browse files Browse the repository at this point in the history
Setup explicit encoding
  • Loading branch information
mkoura committed Jun 15, 2018
2 parents 56aa6dd + a29a8c1 commit cb8cb91
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ deploy:
user: mkoura
password:
secure: HlNLXr53bpxHTykTUiLW3ZaUPPeWjDJdN5ccRgocEuVcdOT2JtB/3XKsRQSy2PlK8jHSmoHbydtL/JVZoxyrEH4P5dArAMnmrVdC67TvW5h0jRryK1RRMMTt8DzJNE2CISE75FDV9EnOMN1g1mT0bZohnwSIpDale3z++yFCaGaHv2v6nZGZKX56oN5t/b/mawpGdbrSvqF80TJNp8C5nu+HZfJdQ6JTMEh5wb/a4CVdJbcUA2QBrywWvAixz/ZSyhNNdfKGhqIwm0QLJt6r2DEoJCD71NOubfc+2BI01vn5JKMT3BnhqcUFhubP51VNITdkc55yMMS7zVdzuIEEC9Mcy0TFVY+6tZaT0245kBlqPsnspxYxoirKvYwllQjU2kh1Sf/L7VmMah73AUFDFeFEdIp3pEla3+7aS+7iR26Yc61uJxaDtZpzP1xSepeMjhW9WWMKWiZwUrgVivBKv2GgH1+C4oHWPLDf8m/kKAy2cg2ud+dfaDekDpXQfmDqpcHNR5GxQ74k6x3Z3cTpjw0Ey/pNdu4cl54ACQ7DsCM4RXJQUl/n+vEx8kyj6Hwf7Flw8FZLkmkHwjTmL08vEw1U271pmSSH9jpMwe52H8Xi/ygZDwKSbBunKjqf3xNQgSNsFiBQXQHuH6jp4GtNZiUB8nbPDREbFDfeUg62a94=
distributions: "sdist bdist_wheel"
on:
tags: true
branch: master
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
from setuptools import find_packages, setup
with open('README.rst', 'rb') as fp:
LONG_DESCRIPTION = fp.read().decode('utf-8').strip()


setup(
name='dump2polarion',
use_scm_version=True,
url='https://github.com/mkoura/dump2polarion',
description='Dump testcases results to xunit file; submit files to Polarion Importers',
long_description=open('README.rst').read().strip(),
long_description=LONG_DESCRIPTION,
author='Martin Kourim',
author_email='mkourim@redhat.com',
license='GPL',
Expand Down

0 comments on commit cb8cb91

Please sign in to comment.