Skip to content
Snippets Groups Projects
Select Git revision
  • adaa7c8f7ff3499437d7ed6770113b558f517ef5
  • main default protected
  • jsc-custom-package
  • outpostdev
  • older_versions
  • 5.3.0-post.7
  • 5.3.0-post.6
  • 5.3.0-post.5
  • 5.3.0-post.4
  • 5.3.0-post.3
  • 5.3.0-post.2
  • 5.3.0-post.1
  • 5.3.0-alpha.3
  • 5.3.0-alpha.2
  • 5.3.0-alpha.1
  • 3.3.8.post53
  • 3.3.8.post52
  • 3.3.8.post51
  • 3.3.8.post50
  • 3.3.8.post47
  • 3.3.8.post46
  • 3.3.8.post45
  • 3.3.8.post44
  • 3.3.8.post43
  • 3.3.8.post42
25 results

api_setup_tunnel.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',
    )