Skip to content
Snippets Groups Projects
Commit 5f8a6cc7 authored by lukas leufen's avatar lukas leufen
Browse files

current version for felix

parent 3d7361e2
Branches
Tags
3 merge requests!125Release v0.10.0,!124Update Master to new version v0.10.0,!103Lukas tech apply changes from 119
Pipeline #37390 passed
setup.py 0 → 100644
import setuptools
from src import __version__, __author__, __email__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mlt",
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",
package_dir={'': 'src'},
packages=setuptools.find_packages(where="src"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # to be adjusted
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment