Skip to content

Commit a052ec6

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

File tree

11 files changed

+9
-20
lines changed

11 files changed

+9
-20
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
name = 'splashlab', # How you named your package folder (MyLib)
44
packages = ['splashlab', 'splashlab.dimensional_analysis'], # Chose the same as "name"
55
package_dir = {"packagename": "src"},
6-
version = 'v0.0.6', # Start with a small number and increase it with every change you make
6+
version = 'v0.0.7', # Start with a small number and increase it with every change you make
77
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
88
description = 'A package for fluid mechanic experimentalists', # Give a short description about your library
99
author = 'Spencer Truman', # Type in your name
1010
author_email = 'trumans24@gmail.com', # Type in your E-Mail
1111
url = 'https://github.com/FluidsLab/SplashLab', # Provide either the link to your github or to your website
12-
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.6.tar.gz', # I explain this later on
12+
download_url = 'https://github.com/FluidsLab/SplashLab/archive/refs/tags/v0.0.7.tar.gz', # I explain this later on
1313
keywords = ['Fluid Dynamics', 'Experiment'], # Keywords that define your package best
1414
install_requires=[ # I get to this in a second
1515
'numpy',
File renamed without changes.
File renamed without changes.

splashlab/src/dimensional_analysis/data_reader.py renamed to splashlab/dimensional_analysis/data_reader.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import numpy as np
33
import pandas as pd
4-
from unit import unit_parser
5-
from parameter import Parameter
6-
from group_of_parameter import GroupOfParameters
4+
from dimensional_analysis.unit import unit_parser
5+
from dimensional_analysis.parameter import Parameter
6+
from dimensional_analysis.group_of_parameter import GroupOfParameters
77

88

99
class Data:

splashlab/src/dimensional_analysis/fluid_types.py renamed to splashlab/dimensional_analysis/fluid_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from unit import Units
55
from parameter import Parameter
6-
from group_of_parameter import GroupOfParameters
6+
from dimensional_analysis.group_of_parameter import GroupOfParameters
77

88

99
english_to_greek = {

splashlab/src/dimensional_analysis/group_of_parameter.py renamed to splashlab/dimensional_analysis/group_of_parameter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import sympy as sp
33

4-
from parameter import Parameter
4+
from dimensional_analysis.parameter import Parameter
55

66

77
class GroupOfParameters:

splashlab/src/dimensional_analysis/parameter.py renamed to splashlab/dimensional_analysis/parameter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import numpy as np
33

44
from dataclasses import dataclass, field
5-
from unit import Unit
5+
from dimensional_analysis.unit import Unit
66

77

88
@dataclass(frozen=True)

splashlab/src/dimensional_analysis/unit.py renamed to splashlab/dimensional_analysis/unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import warnings
33

44
from util import Util
5-
from convert import Convert
5+
from dimensional_analysis.convert import Convert
66

77

88
class Unit:
File renamed without changes.

splashlab/src/dimensional_analysis/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)