diff --git a/setup.py b/setup.py index 65210bc..d9f7028 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -with open('README.rst') as f: +with open('README.md') as f: readme = f.read() with open('LICENSE') as f: @@ -12,10 +12,9 @@ name='trussme', version='0.0.1', description='Truss construction and analysis', - long_description=readme, + long_description="", author='Christopher McComb', author_email='chris.c.mccomb@gmail.com', url='https://github.com/cmccomb/TrussMe', - license=license, - packages=find_packages(exclude=('tests')) + packages=find_packages() )