Skip to content

Commit

Permalink
PyPI support
Browse files Browse the repository at this point in the history
  • Loading branch information
axelvonkamp committed Aug 19, 2024
1 parent e5db9ad commit 36f8d8d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = '0.0.11' %}
{% set version = '0.0.12' %}

package:
name: optlang_enumerator
Expand Down
18 changes: 18 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[project]
name = "optlang_enumerator"
version = "0.0.12"
authors = [
{ name="Axel von Kamp", email="vonkamp@mpi-magdeburg.mpg.de" },
]
description = "Module for enumerating minimal cut sets"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/cnapy-org/optlang_enumerator"
Issues = "https://github.com/cnapy-org/optlang_enumerator/issues"
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from setuptools import setup

setup(name='optlang_enumerator',
version='0.0.11',
description='Enumeration of multiple solutions to a MILP with optlang.',
url='https://github.com/cnapy-org/optlang_enumerator.git',
version='0.0.12',
description='Module for enumerating minimal cut sets',
url='https://github.com/cnapy-org/optlang_enumerator',
author='Axel von Kamp',
author_email='axelk1@gmx.de',
author_email='vonkamp@mpi-magdeburg.mpg.de',
license='Apache License 2.0',
packages=['optlang_enumerator'],
install_requires=['numpy==1.23', 'scipy', 'cobra>=0.26.3', 'optlang', 'efmtool_link', 'sympy>=1.12', 'swiglpk'],
package_dir={'optlang_enumerator': 'optlang_enumerator'},
install_requires=['numpy==1.23', 'scipy', 'cobra>=0.26.3', 'optlang', 'efmtool_link>=0.0.6', 'sympy>=1.12', 'swiglpk'],
zip_safe=False)

0 comments on commit 36f8d8d

Please sign in to comment.