Anders and Briegel in Python
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

23 wiersze
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.2",
  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. )