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

il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
il y a 8 ans
12345678910111213
  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "chp",
  4. version = "0.1",
  5. packages = find_packages(),
  6. test_suite = 'tests',
  7. author = "Scott Aaronson & Daniel Gottesman (Ported by Pete Shadbolt)",
  8. description = "CNOT Hadamard Phase",
  9. license = "Copyright Scott & others",
  10. keywords = "quantum",
  11. url = "http://www.scottaaronson.com/chp/"
  12. )