Skip to content
Snippets Groups Projects
Select Git revision
  • f6bb29e8f8375ff943760e611bc6d186727d2cc0
  • develop default
  • 102-Utest
  • 96-method_i
  • 89-str_to_array
  • 91-output
  • master
  • 87-method-d-swallowed-obstacles
  • feature_trajectory_correction
  • Issue_63
  • Issue_61
  • refactor_SteadyState
  • v0.8.3
  • v0.8.2
  • v0.8.1
  • v0.8
  • v0.7
  • v0.6
18 results

_Plot_N_t.py

Blame
  • setup.py 772 B
    
    import setuptools
    
    from mlair import __version__, __author__, __email__
    
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    
    setuptools.setup(
        name="mlair",
        version=__version__,
        author=__author__,
        author_email=__email__,
        description="A framework to enable easy time series predictions with machine learning.",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://gitlab.version.fz-juelich.de/toar/machinelearningtools",
        packages=setuptools.find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: MIT License",  #  to be adjusted
            "Operating System :: OS Independent",
        ],
        python_requires='>=3.5',
    )