A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
1234567891011121314
  1. from setuptools import setup, find_packages
  2. setup(
  3. name = "bitshift",
  4. version = "0.1.dev",
  5. packages = find_packages(),
  6. install_requires = [
  7. "Flask>=0.10.1", "gunicorn>=18.0", "pygments>=1.6", "requests>=2.2.0",
  8. "beautifulsoup4>=3.2.1", "oursql>=0.9.3.1", "mmh3>=2.3",
  9. "python-dateutil>=2.2"],
  10. author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
  11. license = "MIT",
  12. url = "https://github.com/earwig/bitshift"
  13. )