Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuminjie committed Jan 16, 2019
1 parent 907c616 commit 76e15e1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ __pycache__
*.egg-info
build
dist
*.so
*.pyd
1 change: 0 additions & 1 deletion openseespy/__about__.py

This file was deleted.

1 change: 0 additions & 1 deletion openseespy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
#import opensees
1 change: 1 addition & 0 deletions openseespy/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version_num = "0.0.7"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import setuptools

about = {}
with open('openseespy/__about__.py') as fp:
with open('openseespy/version.py') as fp:
exec(fp.read(), about)

with open("README.rst", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="openseespy",
version=about['__version__'],
version=about['version_num'],
author="Minjie Zhu",
author_email="zhum@oregonstate.edu",
description="A OpenSeesPy package",
Expand Down

0 comments on commit 76e15e1

Please sign in to comment.