[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/brean/python-pathfinding/python2/setup.py [Back]  [Original]

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name="pathfinding",
    description="Pathfinding algorithms (based on Pathfinding.JS)",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/brean/python-pathfinding",
    version="1.0.1",
    license="MIT",
    author="Andreas Bresser",
    packages=find_packages(),
    tests_require=["numpy", "pandas"],
    include_package_data=True,
    install_requires=[],
)

Web Proxy Viewer  |  New URL  |  Original Page