Skip to content

Commit

Permalink
add numpy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
100 committed Jun 19, 2017
1 parent a11d215 commit 52084a6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: python
install:
- pip install numpy
- pip install .
script: pytest -s
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
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',
url = 'https://github.com/100/Solid',
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'
],
)

0 comments on commit 52084a6

Please sign in to comment.