-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
23 lines (22 loc) · 841 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
import setuptools
setuptools.setup(
name="vrpy",
version="0.5.1",
description="A python framework for solving vehicle routing problems",
license="MIT",
author="Romain Montagne, David Torres",
author_email="[email protected]",
keywords=["vehicle routing problem", "vrp", "column generation"],
long_description=open("README.rst", "r").read(),
long_description_content_type="text/x-rst",
url="https://github.com/Kuifje02/vrpy",
packages=setuptools.find_packages(),
install_requires=["cspy", "networkx", "numpy", "pulp"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)