-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
417 additions
and
144 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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
readme = f.read() | ||
|
||
with open('LICENSE') as f: | ||
with open("LICENSE") as f: | ||
license = f.read() | ||
|
||
setup( | ||
name='trussme', | ||
version='0.0.1', | ||
description='Truss construction and analysis', | ||
name="trussme", | ||
version="0.0.1", | ||
description="Truss construction and analysis", | ||
long_description=readme, | ||
license=license, | ||
author='Christopher McComb', | ||
author_email='[email protected]', | ||
url='https://github.com/cmccomb/TrussMe', | ||
author="Christopher McComb", | ||
author_email="[email protected]", | ||
url="https://github.com/cmccomb/TrussMe", | ||
install_requires=["numpy", "pandas", "tabulate"], | ||
packages=find_packages(exclude='tests') | ||
packages=find_packages(exclude="tests"), | ||
) |
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
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,2 +1,2 @@ | ||
from .truss import Truss, read_trs | ||
from .components import MATERIALS, Shape, Material, Box, Pipe, Bar, Square | ||
from .truss import Truss, read_trs |
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
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
Oops, something went wrong.