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.

23 lines
734B

  1. from setuptools import setup
  2. from glob import glob
  3. from os import path
  4. STATIC = glob("abp/static/*.*")+glob("abp/static/img/*.*")+glob("abp/static/scripts/*.*")
  5. setup(
  6. name = "abp",
  7. version = "0.4.26",
  8. packages = ["abp", "abp.static"],
  9. test_suite = "tests",
  10. author = "Pete Shadbolt",
  11. author_email = "hello@peteshadbolt.co.uk",
  12. url = "https://github.com/peteshadbolt/abp",
  13. description = "Port of C++ due to Simon Anders and Hans J Briegel",
  14. keywords = "quantum",
  15. setup_requires = ["numpy"],
  16. scripts = ["bin/abpserver"],
  17. install_requires = ["numpy", "networkx", "tqdm", "websocket-client", "websocket-server"],
  18. package_data = {"abp.static": STATIC},
  19. include_package_data=True
  20. )