Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
thevincentadam committed Sep 15, 2021
1 parent 85d5d7a commit c8a4245
Showing 1 changed file with 30 additions and 19 deletions.
49 changes: 30 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': '[email protected]',
'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='[email protected]',
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",
],
)

0 comments on commit c8a4245

Please sign in to comment.