Skip to content

Commit

Permalink
first commit to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
josephcslater committed Nov 5, 2016
1 parent 9c13544 commit f9fa303
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .gitignore
@@ -1,4 +1,9 @@
*.*~

Vibration_Toolbox.egg-info
Vibration_Toolbox.egg-info/*
VibrationToolbox.egg-info

# OS generated files #
######################
.DS_Store
Expand All @@ -19,4 +24,4 @@ Thumbs.db

*.*~
__pycache__
.idea/
.idea/
17 changes: 17 additions & 0 deletions create_distro.rst
@@ -0,0 +1,17 @@

What I need to do to get this to install properly with pip
https://www.codementor.io/python/tutorial/host-your-python-package-using-github-on-pypi

http://peterdowns.com/posts/first-time-with-pypi.html

To test release
--------------------
python setup.py register -r pypitest
python setup.py sdist upload -r pypitest

look at https://testpypi.python.org/pypi

To release
----------------
python setup.py register -r pypi
python setup.py sdist upload -r pypi
Binary file added dist/VibrationToolbox-0.5b0.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name='Vibration Toolbox',
setup(name='VibrationToolbox',
version='0.5b0',
description='Educational code illustrating fundamentals of vibration for mechanical engineers.',
author='Joseph C. Slater and Raphael Timbo',
Expand Down

0 comments on commit f9fa303

Please sign in to comment.