From c0fc24a8d01822dac701da1761af5ab9c254f393 Mon Sep 17 00:00:00 2001 From: Chris McComb Date: Tue, 12 Dec 2023 13:46:41 -0500 Subject: [PATCH] Fixing extension on README --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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() )