Metadata-Version: 1.1
Name: tsp
Version: 0.0.1
Summary: `tsp` is a package for Traveling Salesman Problem.
Home-page: https://pypi.python.org/pypi/tsp
Author: Saito Tsutomu
Author-email: tsutomu@kke.co.jp
License: PSFL
Description: `tsp` is a package for Traveling Salesman Problem.
        Using Concorde.
        http://www.math.uwaterloo.ca/tsp/concorde/
        ::
        
           t = tsp([(0,0), (0,1), (1,0), (1,1)])
           t.solve()
           print(t.result)
           >>>
           [0, 1, 3, 2]
        
        Requirements
        ------------
        * Python 2 or Python 3
        * concorde
        
        Features
        --------
        * nothing
        
        Setup
        -----
        ::
        
           $ pip install tsp
           or
           $ easy_install tsp
        
        History
        -------
        0.0.1 (2015-10-2)
        ~~~~~~~~~~~~~~~~~~
        * first release
        
        
Keywords: tsp
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
