Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup.py 746B

il y a 8 ans
il y a 8 ans
il y a 8 ans
1234567891011121314151617181920212223
  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. print STATIC
  6. setup(
  7. name = "abp",
  8. version = "0.4.6",
  9. packages = ["abp", "abp.static"],
  10. test_suite = "tests",
  11. author = "Pete Shadbolt",
  12. author_email = "hello@peteshadbolt.co.uk",
  13. url = "https://github.com/peteshadbolt/abp",
  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. package_data = {"abp.static": STATIC},
  20. include_package_data=True
  21. )