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.
 
 
 
 
 
 

15 lines
523 B

  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. "GitPython>=0.3.2.RC1", "beautifulsoup4>=3.2.1", "oursql>=0.9.3.1",
  9. "mmh3>=2.3", "PyYAML>=3.11", "python-dateutil>=2.2", "cchardet>=0.3.5"],
  10. author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
  11. license = "MIT",
  12. url = "https://github.com/earwig/bitshift"
  13. )