From c8a42450614cb3c720c714f862b43cf795036d79 Mon Sep 17 00:00:00 2001 From: Vincent Adam Date: Wed, 15 Sep 2021 22:17:24 +0100 Subject: [PATCH] update setup --- setup.py | 49 ++++++++++++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 19 deletions(-) diff --git a/setup.py b/setup.py index afa85bb..8bba972 100644 --- a/setup.py +++ b/setup.py @@ -27,22 +27,33 @@ with open("README.md") as file: long_description = file.read() -setup_kwargs = { - 'name': 'markovflow', - "version": version, - "long_description": long_description, - "long_description_content_type": "text/markdown", - 'description': 'A Tensorflow based library for Time Series Modelling with Gaussian Processes', - 'author': 'Markovflow Team', - 'author_email': 'markovflow@secondmind.ai', - 'maintainer': None, - 'maintainer_email': None, - 'url': None, - 'packages': packages, - 'package_data': package_data, - 'install_requires': install_requires, - 'python_requires': '>=3.7,<4.0', -} - - -setup(**setup_kwargs) +setup( + version=version, + long_description=long_description, + long_description_content_type="text/markdown", + name='markovflow', + description='A Tensorflow based library for Time Series Modelling with Gaussian Processes', + author='Markovflow Team', + author_email='markovflow@secondmind.ai', + maintainer=None, + maintainer_email=None, + url=None, + packages=packages, + package_data=package_data, + install_requires=install_requires, + python_requires='>=3.7,<4.0', + license="Apache License 2.0", + keywords="Deep-Gaussian-processes", + project_urls={ + "Source on GitHub": "https://github.com/secondmind-labs/markovflow", + "Documentation": "https://secondmind-labs.github.io/markovflow/", + }, + classifiers=[ + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Operating System :: OS Independent", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + ], +)