-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 885 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="bin_packing_problem",
version="1.0.0",
author="ibigpapa",
author_email="[email protected]",
description="Provides 1D bin packing logic.",
license="MIT",
keywords="1D Bin Packing FirstFit NextFit BestFit FFD",
url="https://github.com/ibigpapa/bin_packing_problem",
packages=['binpackp'],
package_data={'': ['LICENSE']},
include_package_data=True,
long_description=read("README"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries"
]
)