Browse Source

update int

tsteuer 4 years ago
parent
commit
7fbd2c2b6c
8 changed files with 46 additions and 7 deletions
  1. 38 0
      Pipfile
  2. 3 1
      cdplib/__init__.py
  3. 1 0
      cdplib/data_cleaning/__init__.py
  4. 2 1
      cdplib/db_migration/__init__.py
  5. 1 0
      cdplib/hyperopt/__init__.py
  6. BIN
      classes.png
  7. BIN
      packages.png
  8. 1 5
      setup.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"

+ 3 - 1
cdplib/__init__.py

@@ -1,2 +1,4 @@
 from .db_handlers import *
-from .db_migration import *
+from .db_migration import *
+from .data_cleaning import *
+from .data_hyperopt import *

+ 1 - 0
cdplib/data_cleaning/__init__.py

@@ -0,0 +1 @@
+from .DataCleaningUtils import *

+ 2 - 1
cdplib/db_migration/__init__.py

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

+ 1 - 0
cdplib/hyperopt/__init__.py

@@ -0,0 +1 @@
+from .HyperoptPipelineSelection import *

BIN
classes.png


BIN
packages.png


+ 1 - 5
setup.py

@@ -1,11 +1,7 @@
 from setuptools import setup,find_packages
 
 INSTALL_REQUIRES = [
-    'numpy',
-    'simplejson',
-    'jsonref',
-    'pymongo',
-    'pandas'
+    'numpy'
 ]