Anders and Briegel in Python
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

22 рядки
699B

  1. from setuptools import setup, find_packages
  2. from glob import glob
  3. from os import path
  4. STATIC = glob("static/*.*")+glob("static/img/*.*")+glob("static/scripts/*.*")
  5. setup(
  6. name = "abp",
  7. version = "0.4.1",
  8. packages = find_packages(),
  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. )