Skip to content

Instantly share code, notes, and snippets.

@legoktm
Created June 21, 2013 01:53
Show Gist options
  • Save legoktm/5828320 to your computer and use it in GitHub Desktop.
Save legoktm/5828320 to your computer and use it in GitHub Desktop.
A fake setup.py for pywikibot
from setuptools import setup, find_packages
setup(name='Pywikipediabot',
version='2.0alpha',
description='Python Wikipedia Bot Framework',
license='MIT',
packages=find_packages(),
install_requires=['httplib2>=0.6.0'],
test_suite="tests",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment