-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Update setup.py: update version number and remove find\_packages"
Explanation: The setup.py file has been updated to change the version number from 0.0.7 to 0.0.8
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
||
|
@@ -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=[ | ||
|