Skip to content

Commit

Permalink
Merge pull request #21 from wouterbles/update-deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
wouterbles authored Jan 29, 2024
2 parents b4675e1 + 8195f30 commit 6df7225
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 66 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.5

- Update dependencies

## 1.0.4

- Correctly enqueue items such that the work can be redistributed when a process finishes its work
Expand Down
8 changes: 6 additions & 2 deletions dev/make_distribution.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ set -e
FWDIR="$(cd "`dirname "${BASH_SOURCE[0]}"`"; pwd)"
cd "$FWDIR/.."

# Clean up previous build artifacts
rm -rf dist
rm -rf pyaugmecon.egg-info
python setup.py sdist
python setup.py bdist_wheel

# Build source and wheel distribution using the `build` package
python -m build

# Upload the distribution files to PyPI using twine
twine upload dist/*
51 changes: 51 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pyaugmecon"
version = "1.0.5"
authors = [{ name = "Wouter Bles", email = "whbles@gmail.com" }]
description = "An AUGMECON based multi-objective optimization solver for Pyomo."
readme = "README.md"
keywords = ["python", "pyomo", "optimization", "multi-objective-optimization", "augmecon"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Education"
]

[project.urls]
Homepage = "https://github.com/wouterbles/pyaugmecon"
Changelog = "https://github.com/wouterbles/pyaugmecon/blob/main/CHANGELOG.md"

[project.scripts]
make_distribution = "make_distribution.sh"

[tool.setuptools]
packages = ["pyaugmecon"]
test_suite = "tests"

[project.dependencies]
python = ">=3.8"
pyomo = "~6.7.0"
numpy = "~1.26.3"
pandas = "~2.2.0"
cloudpickle = "~3.0.0"
pymoo = "~0.6.1.1"
openpyxl = "~3.1.2"
6 changes: 0 additions & 6 deletions requirements.txt

This file was deleted.

58 changes: 0 additions & 58 deletions setup.py

This file was deleted.

0 comments on commit 6df7225

Please sign in to comment.