File: setup.cfg

package info (click to toggle)
optlang 1.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,784 kB
  • sloc: python: 12,459; makefile: 129
file content (68 lines) | stat: -rw-r--r-- 1,923 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[metadata]
name = optlang
url = https://github.com/opencobra/optlang
download_url = https://pypi.org/project/optlang/
project_urls =
    Source Code = https://github.com/opencobra/optlang
    Documentation = https://optlang.readthedocs.io
    Bug Tracker = https://github.com/opencobra/optlang/issues
author = Nikolaus Sonnenschein
author_email = niko.sonnenschein@gmail.com
# Please consult https://pypi.org/classifiers/ for a full list.
classifiers =
    Development Status :: 5 - Production/Stable
    Intended Audience :: Science/Research
    License :: OSI Approved :: Apache Software License
    Natural Language :: English
    Operating System :: OS Independent
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: 3.13
    Topic :: Scientific/Engineering :: Mathematics
license = Apache-2.0
description = Formulate optimization problems using sympy expressions and solve them using interfaces to third-party optimization software (e.g. GLPK).
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
    optimization
    mathematical programming
    heuristic optimization
    sympy

[options]
zip_safe = True
install_requires =
    swiglpk >=5.0.12
    sympy >=1.12.0
python_requires = >=3.9
tests_require =
    tox
packages = find:
package_dir =
    = src

[options.packages.find]
where = src

[options.extras_require]
development =
    black
    isort
    tox

[bdist_wheel]
universal = 1

# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.

[versioneer]
VCS = git
style = pep440
versionfile_source = src/optlang/_version.py
versionfile_build = optlang/_version.py
tag_prefix =
parentdir_prefix = optlang-