Skip to content

Commit d636fe1

Browse files
committed
Another attempt at PyPI
1 parent cd7dd6b commit d636fe1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
from distutils.core import setup
22
setup(
33
name = 'splashlab', # How you named your package folder (MyLib)
4-
packages = ['splashlab'], # Chose the same as "name"
5-
package_dir={"packagename": "src"},
6-
py_modules = ['splashlab.dimensional_analysis'],
7-
version = 'v0.0.4', # Start with a small number and increase it with every change you make
4+
packages = ['splashlab', 'splashlab.dimensional_analysis'], # Chose the same as "name"
5+
package_dir = {"packagename": "src"},
6+
version = 'v0.0.6', # Start with a small number and increase it with every change you make
87
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
98
description = 'A package for fluid mechanic experimentalists', # Give a short description about your library
109
author = 'Spencer Truman', # Type in your name
1110
author_email = 'trumans24@gmail.com', # Type in your E-Mail
1211
url = 'https://github.com/FluidsLab/SplashLab', # Provide either the link to your github or to your website
13-
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.5.tar.gz', # I explain this later on
12+
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.6.tar.gz', # I explain this later on
1413
keywords = ['Fluid Dynamics', 'Experiment'], # Keywords that define your package best
1514
install_requires=[ # I get to this in a second
1615
'numpy',

splashlab/test.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
3+
class TestClass:
4+
@staticmethod
5+
def add(number):
6+
return number+1

0 commit comments

Comments
 (0)