Skip to content
Snippets Groups Projects
Select Git revision
  • abbbf5469916ca5aebc1bdda159573c8470aaa9f
  • main default protected
  • 2.0.1 protected
  • 2.0.0 protected
  • 2.0.0a4 protected
  • 2.0.0a3 protected
  • 2.0.0a2 protected
  • 2.0.0a1 protected
  • 1.1.2 protected
  • 1.1.1 protected
  • 1.1.0 protected
  • 1.0.5 protected
  • 1.0.4 protected
  • 1.0.3 protected
  • 1.0.2 protected
  • 1.0.1 protected
  • 1.0.0 protected
  • 0.9.1 protected
  • 0.9.0 protected
19 results

api_notifications.py

Blame
  • setup.py 752 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.jsc.fz-juelich.de/esde/machine-learning/mlair",
        packages=setuptools.find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: MIT License",
            "Operating System :: OS Independent",
        ],
        python_requires='>=3.5',
    )