Skip to content

Commit

Permalink
Sat Jan 13 15:49:54 CET 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
dgerosa committed Jan 13, 2024
1 parent c4040ae commit d6f649c
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 62 deletions.
173 changes: 114 additions & 59 deletions lectures/L08_pytest_pip.ipynb

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions lectures/modulescicompclass/modulescicompclass/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .mandel import * #This makes everything accessibile in the top-level namespace
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from setuptools import setup, find_packages

setup(name='mymodule',
setup(name='modulescicompclass',
description='test module for the SciComp class',
url='https://github.com/dgerosa',
author='Davide Gerosa',
author_email='davide.gerosa@unimib.it',
license='MIT',
version='0.0.1',
packages=find_packages(),
install_requires=['numpy', 'matplotlib'])
2 changes: 0 additions & 2 deletions lectures/mymodule/mymodule/__init__.py

This file was deleted.

0 comments on commit d6f649c

Please sign in to comment.