A semantic search engine for source code https://bitshift.benkurtovic.com/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

setup.py 317 B

1234567891011
  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "bitshift",
  4. version = "0.1",
  5. packages = find_packages(),
  6. install_requires = ["Flask>=0.10.1", "pygments>=1.6"],
  7. author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
  8. license = "MIT",
  9. url = "https://github.com/earwig/bitshift"
  10. )