Skip to content

Commit

Permalink
Fixing setup.py for 0.4.25
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Jan 8, 2018
1 parent 843d2df commit ec0ede9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
#
# --------------------------------------------------------------------------

from setuptools import setup
from setuptools import setup, find_packages

setup(
name='msrest',
version='0.4.25',
author='Microsoft Corporation',
packages=['msrest'],
packages=find_packages(exclude=["tests", "tests.*"]),
url=("https://github.com/Azure/msrest-for-python"),
license='MIT License',
description='AutoRest swagger generator Python client runtime.',
Expand Down

0 comments on commit ec0ede9

Please sign in to comment.