Skip to content

Commit

Permalink
Updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund committed Oct 29, 2015
1 parent ff47123 commit fc34397
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com

from setuptools import setup
from os.path import exists
import os


Expand All @@ -31,7 +30,7 @@ def find_all_files(directory, endings=None):

setup(
name='vunit_hdl',
version='0.42.0',
version='0.43.0',
packages=['vunit',
'vunit.com',
'vunit.test',
Expand All @@ -58,4 +57,4 @@ def find_all_files(directory, endings=None):
author='Lars Asplund',
author_email='lars.anders.asplund@gmail.com',
description="VUnit is an open source unit testing framework for VHDL.",
long_description=(open('README.rst').read() if exists('README.rst') else '')) # nopep8
long_description=open('README.rst').read()) # nopep8

0 comments on commit fc34397

Please sign in to comment.