-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
30 lines (29 loc) · 1.21 KB
/
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
from setuptools import setup
setup(name='binpacking',
version='1.5.2',
description='Heuristic distribution of weighted items to bins (either a fixed number of bins or a fixed number of volume per bin). Data may be in form of list, dictionary, list of tuples or csv-file.',
url='https://www.github.com/benmaier/binpacking',
author='Benjamin F. Maier',
author_email='[email protected]',
license='MIT',
packages=['binpacking'],
install_requires=[
'future',
],
tests_require=['pytest', 'pytest-cov'],
dependency_links=[
],
entry_points = {
'console_scripts': [
'binpacking = binpacking.binpacking_binary:main',
],
},
classifiers=['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
zip_safe=False)