39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
from setuptools import setup, Extension
|
|
from os.path import join as pjoin
|
|
from os.path import dirname
|
|
|
|
# Utility function to read the README file.
|
|
# Used for the long_description. It's nice, because now 1) we have a top level
|
|
# README file and 2) it's easier to type in the README file than to put a raw
|
|
# string in below ...
|
|
def read(fname):
|
|
return open(pjoin(dirname(__file__), fname)).read()
|
|
|
|
setup(
|
|
name='ortools_examples',
|
|
version='3.VVVV',
|
|
install_requires = ['ortools'],
|
|
license='Apache 2.0',
|
|
author = 'Google Inc',
|
|
author_email = 'lperron@google.com',
|
|
description = 'Google OR-Tools python libraries and modules',
|
|
keywords = ('operations research, constraint programming, ' +
|
|
'linear programming,' + 'flow algorithms,' +
|
|
'python'),
|
|
url = 'https://developers.google.com/optimization/',
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Operating System :: MacOS :: MacOS X',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Office/Business :: Scheduling',
|
|
'Topic :: Scientific/Engineering',
|
|
'Topic :: Scientific/Engineering :: Mathematics',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'],
|
|
long_description = read('README.txt'),
|
|
)
|