Skip to content

Commit ed72b86

Browse files
committed
Another attempt at PyPI
1 parent aefe4be commit ed72b86

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

__init__.py

Whitespace-only changes.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
setup(
33
name = 'splashlab', # How you named your package folder (MyLib)
44
packages = ['splashlab'], # Chose the same as "name"
5-
version = 'v0.0.3', # Start with a small number and increase it with every change you make
5+
py_modules = ['splashlab.dimensional_analysis'],
6+
version = 'v0.0.4', # Start with a small number and increase it with every change you make
67
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
78
description = 'A package for fluid mechanic experimentalists', # Give a short description about your library
89
author = 'Spencer Truman', # Type in your name
910
author_email = 'trumans24@gmail.com', # Type in your E-Mail
1011
url = 'https://github.com/FluidsLab/SplashLab', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.3.tar.gz', # I explain this later on
12+
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.4.tar.gz', # I explain this later on
1213
keywords = ['Fluid Dynamics', 'Experiment'], # Keywords that define your package best
1314
install_requires=[ # I get to this in a second
1415
'numpy',

0 commit comments

Comments
 (0)