forked from mgabay/Variable-Size-Vector-Bin-Packing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 669 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 669 Bytes
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
#!/usr/bin/env python
""" Basic Setup Script """
from setuptools import setup
setup(
name='vsvbp',
version='0.0.2',
description='Variable Sized Vector Packing Heuristics',
author='Michael Gabay',
author_email='',
packages=['vsvbp'],
include_package_data=True,
scripts=['bin/vsvbp-benchmark'],
url='',
license='GPL',
long_description=open('README.md').read(),
keywords='',
use_2to3 = True,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'
'License :: OSI Approved :: GNU General Public License (GPL)'
],
)