setup.py 602 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from setuptools import setup, find_packages
  4. with open("README.md", "r") as fh:
  5. long_description = fh.read()
  6. setup(
  7. name="pathfinding",
  8. description="Pathfinding algorithms (based on Pathfinding.JS)",
  9. long_description=long_description,
  10. long_description_content_type="text/markdown",
  11. url="https://github.com/brean/python-pathfinding",
  12. version="0.0.4",
  13. license="MIT",
  14. author="Andreas Bresser",
  15. packages=find_packages(),
  16. tests_require=["numpy", "pandas"],
  17. include_package_data=True,
  18. install_requires=[],
  19. )