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
684B

  1. from setuptools import setup, find_packages
  2. from glob import glob
  3. from os import path
  4. APPNAME = "abp"
  5. STATIC = glob("static/*.*")+glob("static/img/*.*")+glob("static/scripts/*.*")
  6. appdata = path.expanduser(path.join("~", "." + APPNAME))
  7. print appdata
  8. setup(
  9. name = "abp",
  10. version = "0.3",
  11. packages = find_packages(),
  12. test_suite = "tests",
  13. author = "Pete Shadbolt",
  14. description = "Port of C++ due to Simon Anders and Hans J Briegel",
  15. keywords = "quantum",
  16. setup_requires = ["numpy"],
  17. scripts = ["bin/abpserver"],
  18. install_requires = ["numpy", "networkx", "tqdm", "websocket-client", "websocket-server"],
  19. data_files = [("static", STATIC)]
  20. )