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.
 
 
 
 
 
 

13 line
384 B

  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", "requests>=2.2.0",
  7. "BeautifulSoup>=3.2.1"],
  8. author = "Benjamin Attal, Ben Kurtovic, Severyn Kozak",
  9. license = "MIT",
  10. url = "https://github.com/earwig/bitshift"
  11. )