From 52084a6c31cac8fac351881777e0b14ea9300779 Mon Sep 17 00:00:00 2001 From: d-soni Date: Mon, 19 Jun 2017 00:34:56 -0700 Subject: [PATCH] add numpy dependency --- .travis.yml | 5 +++++ README.md | 2 +- setup.py | 5 ++++- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d0bdb2a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: python +install: + - pip install numpy + - pip install . +script: pytest -s \ No newline at end of file diff --git a/README.md b/README.md index c1d6743..0b35dd1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Solid -## *Solid* is a simple library for gradient-free optimization. +## *Solid* is a simple Python library for gradient-free optimization. #### It contains basic versions of many of the most common algorithms, and allows for very rapid development using them. diff --git a/setup.py b/setup.py index 5dd4b43..d31446d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name = 'solidpy', packages = ['Solid'], - version = '0.1', + version = '0.11', description = 'A comprehensive gradient-free optimization library', author = 'Devin Soni', author_email = 'devinsoni1010@gmail.com', @@ -10,4 +10,7 @@ download_url = 'https://github.com/100/Solid/archive/0.1.tar.gz', keywords = ['metaheuristic', 'optimization', 'algorithm', 'artificial intelligence', 'machine learning'], classifiers = ['Programming Language :: Python :: 2.7'], + install_requires=[ + 'numpy' + ], ) \ No newline at end of file