Anders and Briegel in Python
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
385B

  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "abp",
  4. version = "0.1",
  5. packages = find_packages(),
  6. test_suite = 'tests',
  7. author = "Pete Shadbolt",
  8. author_email = "hello@peteshadbolt.co.uk",
  9. description = "Implements Anders and Briegel in Python",
  10. license = "MIT",
  11. keywords = "quantum",
  12. url = "https://github.com/peteshadbolt/abp/"
  13. )