Browse Source

changed file structure

tsteuer 4 years ago
parent
commit
4dbe62b4c8
4 changed files with 42 additions and 1 deletions
  1. 38 0
      Pipfile
  2. 0 0
      cdplib/FlattenData.py
  3. 3 0
      cdplib/__init__.py
  4. 1 1
      cdplib/db_migration/__init__.py

+ 38 - 0
Pipfile

@@ -0,0 +1,38 @@
+[[source]]
+name = "pypi"
+url = "https://pypi.org/simple"
+verify_ssl = true
+
+[dev-packages]
+
+[packages]
+# cdplib = {editable = true,git = "https://readonly:readonly@intra.acdp.at/gogs/tanja/cdplib.git"}
+pycodestyle = "*"
+ipykernel = "*"
+spyder-kernels = "==0.*"
+cloudpickle = "*"
+openpyxl = "*"
+setuptools = "*"
+scipy = "*"
+matplotlib = "*"
+tsfresh = "*"
+hyperopt = "*"
+xgboost = "*"
+scikit-learn = "*"
+pandas = "!=0.24.0"
+pandas-compat = "*"
+xmltodict = "*"
+sqlalchemy = "*"
+sqlparse = "*"
+pymysql = "*"
+xlrd = "*"
+pymongo = "*"
+jsonref = "*"
+faker = "*"
+xeger = "*"
+simplejson = "*"
+mysql = "*"
+sqlalchemy-utils = "*"
+
+[requires]
+python_version = "3"

cdplib/db_migration/FlattenData.py → cdplib/FlattenData.py


+ 3 - 0
cdplib/__init__.py

@@ -3,3 +3,6 @@ from .db_migration import *
 from .data_cleaning import *
 from .hyperopt import *
 from .utils import *
+from .log import *
+from .FlattenData import *
+from .Singelton_Threadsafe import * 

+ 1 - 1
cdplib/db_migration/__init__.py

@@ -4,4 +4,4 @@ from .MigrationCleaning import *
 from .ParseDbSchema import *
 from .ParseJsonSchema import *
 from .ParseMapping import *
-from .FlattenData import *
+