Skip to content

Commit

Permalink
"Update setup.py: fix find\_packages and increment version to 0.0.8"
Browse files Browse the repository at this point in the history
This commit updates the setup.py file for the FoundationDesign package. It replaces the use of find\_packages with an explicit list
  • Loading branch information
kunle009 committed May 13, 2024
1 parent d50d728 commit be86807
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup
import os


Expand All @@ -11,12 +11,12 @@

setup(
name="FoundationDesign",
packages=find_packages("FoundationDesign"),
version="0.0.7",
packages=["FoundationDesign"],
version="0.0.8",
author="Kunle Yusuf",
author_email="[email protected]",
description="A python module for structural analysis and design of different foundation types in accordance to the Eurocodes",
url = 'https://github.com/kunle009/FoundationDesign',
url="https://github.com/kunle009/FoundationDesign",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
Expand Down

0 comments on commit be86807

Please sign in to comment.