Skip to content

Commit

Permalink
"Update setup.py: update version number and remove find\_packages"
Browse files Browse the repository at this point in the history
Explanation:

The setup.py file has been updated to change the version number from 0.0.7 to 0.0.8
  • Loading branch information
kunle009 committed May 13, 2024
1 parent 3f8b482 commit f5d3cf2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions docs/examples.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.. _examples:

1. Introduction to Examples
==============================

This section demonstrates the core functionality of the ``FoundationDesign`` package with examples. Examples taken from the Mosley and Bungey Textbook alongside reinforced concrete design textbook by prab bhatt

You can follow along with examples online: |colab| |binder|

.. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg
:target: https://colab.research.google.com/github/JesseBonanno/FoundationDesign/blob/main/docs/examples/simple_demo.ipynb

.. |binder| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/JesseBonanno/FoundationDesign/main?filepath=docs%2Fexamples%2Fsimple_demo.ipynb

In order to effectively use the package online you should first run the cell that initialises the notebook by installing the package.

.. literalinclude:: examples/ex_1.py

You can also approach the problems using the web-based graphical user interface |website|

.. |website| image:: https://img.shields.io/website?down_color=lightgrey&down_message=offline&up_color=green&up_message=up&url=https%3A%2F%2Findeterminate-beam.herokuapp.com%2F
:target: https://foundationcalcs.com/
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 f5d3cf2

Please sign in to comment.