Skip to content

Instantly share code, notes, and snippets.

Created June 14, 2013 12:19
Show Gist options
  • Save anonymous/5781388 to your computer and use it in GitHub Desktop.
Save anonymous/5781388 to your computer and use it in GitHub Desktop.
fug - setup.py
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = 'fug',
version = '0.3.2',
install_requires = ['docutils>=0.3', 'lxml', 'requests'],
packages = find_packages(),
entry_points = {'console_scripts': ['fug = fug.main']},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment