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.
 
 
 
 
 
 

14 lines
414 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", "pygments>=1.6", "requests>=2.2.0",
  8. "beautifulsoup4>=3.2.1", "oursql>=0.9.3.1", "mmh3>=2.3"],
  9. author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
  10. license = "MIT",
  11. url = "https://github.com/earwig/bitshift"
  12. )