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.

il y a 8 ans
il y a 8 ans
il y a 5 ans
il y a 8 ans
1234567891011121314151617
  1. from setuptools import setup
  2. from glob import glob
  3. from os import path
  4. setup(
  5. name = "abp",
  6. version = "0.6.3",
  7. packages = ["abp"],
  8. test_suite = "tests",
  9. author = "Pete Shadbolt",
  10. author_email = "hello@peteshadbolt.co.uk",
  11. url = "https://github.com/peteshadbolt/abp",
  12. description = "Port of C++ due to Simon Anders and Hans J Briegel",
  13. keywords = "quantum",
  14. setup_requires = ["numpy"],
  15. install_requires = ["numpy", "networkx", "requests", "six"],
  16. )