forked from secnot/rectpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 876 Bytes
/
setup.py
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
from setuptools import setup
long_description = """A collection of heuristic algorithms for solving the 2D knapsack problem,
also known as the bin packing problem. In essence packing a set of rectangles into the
smallest number of bins."""
setup(
name="rectpack",
version="0.2.2",
description="2D Rectangle packing library",
long_description=long_description,
url="https://github.com/secnot/rectpack/",
author="SecNot",
keywords=["knapsack", "rectangle", "packing 2D", "bin", "binpacking"],
license="Apache-2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
packages=["rectpack"],
zip_safe=False,
test_suite="nose.collector",
tests_require=["nose"],
)