-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
38 lines (35 loc) · 1.28 KB
/
setup.cfg
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
[metadata]
name = dlx
version = 1.0.4
author = Sebastian Raaphorst
author_email = [email protected]
license = Apache 2.0
license_files = LICENSE
description = Implementation of Donald Knuth's Dancing Links algorithm.
keywords =
exact
cover
algorithm
dlx
dancing
links
url = http://www.site.uottawa.ca/~mraap046
long_description =
This package provides an implementation of Donald Knuth's Dancing
Links algorithm for solving exact set cover problems.
1.0.4: Minor Python 3 bugfix.
1.0.3: Attempt to make code compatible with Python 3.
1.0.2: Removed extraneous code (had switched from callbacks for solutions to
making solve a generator to yield, but had forgotten to remove the
solution callback function parameter from the solve method).
1.0.1: Critical bugfix (N array was one short: did not account for header).
1.0.0: Initial release.
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Scientific/Engineering :: Mathematics
[options]
packages = dlx
setup_requires = setuptools>=42;wheel;setuptools_scm[toml]>=3.4