Skip to content

Commit f9fa303

Browse files
committed
first commit to pypi
1 parent 9c13544 commit f9fa303

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
*.*~
2+
3+
Vibration_Toolbox.egg-info
4+
Vibration_Toolbox.egg-info/*
5+
VibrationToolbox.egg-info
6+
27
# OS generated files #
38
######################
49
.DS_Store
@@ -19,4 +24,4 @@ Thumbs.db
1924

2025
*.*~
2126
__pycache__
22-
.idea/
27+
.idea/

create_distro.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
What I need to do to get this to install properly with pip
3+
https://www.codementor.io/python/tutorial/host-your-python-package-using-github-on-pypi
4+
5+
http://peterdowns.com/posts/first-time-with-pypi.html
6+
7+
To test release
8+
--------------------
9+
python setup.py register -r pypitest
10+
python setup.py sdist upload -r pypitest
11+
12+
look at https://testpypi.python.org/pypi
13+
14+
To release
15+
----------------
16+
python setup.py register -r pypi
17+
python setup.py sdist upload -r pypi

dist/VibrationToolbox-0.5b0.tar.gz

15.2 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def read(fname):
1515
return open(os.path.join(os.path.dirname(__file__), fname)).read()
1616

17-
setup(name='Vibration Toolbox',
17+
setup(name='VibrationToolbox',
1818
version='0.5b0',
1919
description='Educational code illustrating fundamentals of vibration for mechanical engineers.',
2020
author='Joseph C. Slater and Raphael Timbo',

0 commit comments

Comments
 (0)