-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c65fae
commit 3494449
Showing
1 changed file
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,6 @@ | |
""" | ||
|
||
from setuptools import setup | ||
# http://python-packaging.readthedocs.io/en/latest/index.html | ||
# Have already run: sudo pip3 install -e . <-- installs DFOGN as package on this system (linked to this source folder) | ||
# Test: python3 setup.py test | ||
|
||
# List of classifiers: https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
|
||
# Get package version | ||
from dfogn import __version__ | ||
|
@@ -40,6 +35,7 @@ | |
author='Lindon Roberts', | ||
author_email='[email protected]', | ||
url="https://github.com/numericalalgorithmsgroup/dfogn/", | ||
download_url="https://github.com/numericalalgorithmsgroup/dfogn/archive/0.1.tar.gz", | ||
packages=['dfogn'], | ||
license='GNU GPL', | ||
keywords = "mathematics derivative free optimization nonlinear least squares", | ||
|