Browse Source

Update 'README.md'

tsteuer 4 years ago
parent
commit
8ea43d5571
1 changed files with 5 additions and 4 deletions
  1. 5 4
      README.md

+ 5 - 4
README.md

@@ -6,10 +6,11 @@ Install cdplib via pipenv: `pipenv install -e git+https://readonly:readonly@intr
 How to set up a new Package: 
 
 * Copy folder to respository into cdplib folder 
-* Add required package names in setup.py 
-    * Open setup.py and add package name under install_requires
-* Add a __init__.py file inside the new package folder 
-* Open it and addall python skript which schould be included
+* Add the Package/Folder name to cdplib/__init__.py 
+    * Open it and add all python packages which schould be included
+    * Package name is Preprocessing the line to add would be: from .Preprocessing import *  
+* Add a cdplib/package_name/__init__.py file inside the new package folder 
+    * Open it and add all python skript which schould be included
     * Script name is FeatureSelection.py the line to add would be: from .FeatureSelection import * 
 
 ### Import into Script