-
Notifications
You must be signed in to change notification settings - Fork 334
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
63ef1ab
commit f7ce89d
Showing
4 changed files
with
63 additions
and
41 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
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 |
---|---|---|
|
@@ -11,8 +11,8 @@ | |
""" | ||
|
||
__author__ = """Lester James V. Miranda""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.2.1' | ||
__email__ = "[email protected]" | ||
__version__ = "0.3.0" | ||
|
||
from .single import global_best, local_best, general_optimizer | ||
from .discrete import binary | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.2.1 | ||
current_version = 0.3.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
|
@@ -5,65 +5,65 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.md', encoding="utf8") as readme_file: | ||
with open("README.md", encoding="utf8") as readme_file: | ||
readme = readme_file.read() | ||
|
||
requirements = [ | ||
'PyYAML==3.12', | ||
'future==0.16.0', | ||
'scipy>=0.17.0', | ||
'numpy>=1.13.0', | ||
'matplotlib>=1.3.1', | ||
'mock==2.0.0', | ||
'pytest==3.2.1', | ||
'attrs==18.1.0', | ||
'pre-commit' | ||
"PyYAML==3.13", | ||
"future==0.16.0", | ||
"scipy>=0.17.0", | ||
"numpy>=1.13.0", | ||
"matplotlib>=1.3.1", | ||
"mock==2.0.0", | ||
"pytest==3.6.4", | ||
"attrs==18.1.0", | ||
"pre-commit", | ||
] | ||
|
||
setup_requirements = [ | ||
# TODO(ljvmiranda921): put setup requirements (distutils extensions, etc.) here | ||
] | ||
|
||
test_requirements = [ | ||
'PyYAML==3.12', | ||
'future==0.16.0', | ||
'scipy>=0.17.0', | ||
'numpy>=1.13.0', | ||
'matplotlib>=1.3.1', | ||
'mock==2.0.0', | ||
'pytest==3.2.1', | ||
'attrs==18.1.0', | ||
'pre-commit' | ||
"PyYAML==3.13", | ||
"future==0.16.0", | ||
"scipy>=0.17.0", | ||
"numpy>=1.13.0", | ||
"matplotlib>=1.3.1", | ||
"mock==2.0.0", | ||
"pytest==3.6.4", | ||
"attrs==18.1.0", | ||
"pre-commit", | ||
] | ||
|
||
setup( | ||
name='pyswarms', | ||
version='0.2.1', | ||
name="pyswarms", | ||
version="0.3.0", | ||
description="A Python-based Particle Swarm Optimization (PSO) library.", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
author="Lester James V. Miranda", | ||
author_email='[email protected]', | ||
url='https://github.com/ljvmiranda921/pyswarms', | ||
packages=find_packages(exclude=['docs', 'tests']), | ||
author_email="[email protected]", | ||
url="https://github.com/ljvmiranda921/pyswarms", | ||
packages=find_packages(exclude=["docs", "tests"]), | ||
include_package_data=True, | ||
install_requires=requirements, | ||
license="MIT license", | ||
zip_safe=False, | ||
keywords='pyswarms', | ||
keywords="pyswarms", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Topic :: Scientific/Engineering', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering", | ||
"Programming Language :: Python :: 3.4", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
], | ||
test_suite='tests', | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
setup_requires=setup_requirements, | ||
) |