Skip to content

Commit 9f05de5

Browse files
committed
Setup basic package structure
1 parent 2cc72bf commit 9f05de5

File tree

12 files changed

+59
-3
lines changed

12 files changed

+59
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist

LICENSE.txt

Whitespace-only changes.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
schmitt
1+
Thomas Schmitt
22
=======
3-
4-
Thomas Schmitt's repo for the "Scientific Programming in Python" course
3+
SciLifeLab python course 2013

schmitt.egg-info/PKG-INFO

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Metadata-Version: 1.0
2+
Name: schmitt
3+
Version: 0.1dev
4+
Summary: SciLifeLab python course 2013
5+
Home-page: http://github.com/wurstbonbon/schmitt
6+
Author: Thomas Schmitt
7+
Author-email: [email protected]
8+
License: UNKNOWN
9+
Description: UNKNOWN
10+
Keywords: scilifelab bioinformatics
11+
Platform: UNKNOWN

schmitt.egg-info/SOURCES.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
setup.cfg
2+
setup.py
3+
schmitt/__init__.py
4+
schmitt.egg-info/PKG-INFO
5+
schmitt.egg-info/SOURCES.txt
6+
schmitt.egg-info/dependency_links.txt
7+
schmitt.egg-info/entry_points.txt
8+
schmitt.egg-info/not-zip-safe
9+
schmitt.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

schmitt.egg-info/entry_points.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
# -*- Entry points: -*-
3+

schmitt.egg-info/not-zip-safe

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

schmitt.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
schmitt

schmitt/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#

0 commit comments

Comments
 (0)