Skip to content

Commit

Permalink
Fix description on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkelstern committed Apr 27, 2018
1 parent fb6c0f8 commit e9d3bb8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Changelog
=====

- Bugfix: Python 2 issue (Re #4)
- Ignore Test Base classes (Thanks [withrocks](https://github.com/withrocks))
- Testrunner.run() now returns stats (Thanks [nooploop](https://github.com/nooploop))
- Ignore Test Base classes (Thanks withrocks: https://github.com/withrocks)
- Testrunner.run() now returns stats (Thanks nooploop: https://github.com/nooploop)


---------------------------------------------------------------------
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import os
from setuptools import setup, find_packages

with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()

setup(
name='integrate',
version='1.2.0',
version='1.2.1',
description='Test framework for integration tests with dependencies',
long_description=README,
long_description_content_type='text/x-rst',
url='https://github.com/anfema/integrate',
author='Johannes Schriewer',
author_email='[email protected]',
Expand Down

0 comments on commit e9d3bb8

Please sign in to comment.