Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
486B

  1. from setuptools import setup
  2. from glob import glob
  3. from os import path
  4. setup(
  5. name = "abp",
  6. version = "0.5.0",
  7. packages = ["abp"],
  8. test_suite = "tests",
  9. author = "Pete Shadbolt",
  10. author_email = "hello@peteshadbolt.co.uk",
  11. url = "https://github.com/peteshadbolt/abp",
  12. description = "Port of C++ due to Simon Anders and Hans J Briegel",
  13. keywords = "quantum",
  14. setup_requires = ["numpy"],
  15. install_requires = ["numpy", "networkx", "requests"],
  16. )