forked from secnot/rectpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (27 loc) · 939 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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
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=long_description,
# Main homepage
url='https://github.com/secnot/rectpack/',
# Extra info and author details
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',
],
# package
packages = ['rectpack'],
zip_safe = False,
# Tests
test_suite='nose.collector',
tests_require=['nose'],
)