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.

14 lines
405B

  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "abp",
  4. version = "0.2",
  5. packages = find_packages(),
  6. test_suite = "tests",
  7. author = "Pete Shadbolt",
  8. description = "Port of C++ due to Simon Anders and Hans J Briegel",
  9. keywords = "quantum",
  10. setup_requires = ["numpy"],
  11. install_requires = ["numpy", "networkx", "tqdm", "websocket-client", "websocket-server"],
  12. )