Skip to content

Commit

Permalink
Merge pull request #102 from michaelhush/description
Browse files Browse the repository at this point in the history
Add description for PyPI
  • Loading branch information
charmasaur authored Jan 13, 2021
2 parents 627176d + 90498c7 commit d72d0af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
======
M-LOOP
======

The Machine-Learner Online Optimization Package is designed to automatically and rapidly optimize the parameters of a scientific experiment or computer controller system. See the documentation at http://m-loop.readthedocs.io/.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
import mloop as ml

from setuptools import setup, find_packages
from os import path

def main():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'DESCRIPTION.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name = 'M-LOOP',
version = ml.__version__,
Expand Down Expand Up @@ -37,6 +42,7 @@ def main():
author = 'Michael R Hush',
author_email = '[email protected]',
description = 'M-LOOP: Machine-learning online optimization package. A python package of automated optimization tools - enhanced with machine-learning - for quantum scientific experiments, computer controlled systems or other optimization tasks.',
long_description = long_description,
license = 'MIT',
keywords = 'automated machine learning optimization optimisation science experiment quantum',
url = 'https://github.com/michaelhush/M-LOOP/',
Expand Down

0 comments on commit d72d0af

Please sign in to comment.