Skip to content

Instantly share code, notes, and snippets.

@chancez
Created January 30, 2014 03:54
Show Gist options
  • Save chancez/8702242 to your computer and use it in GitHub Desktop.
Save chancez/8702242 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2
from setuptools import setup, find_packages
from hamper import version
requires = open('requirements.txt').read().split('\n')
for i, dep in enumerate(requires):
if 'psycopg' in dep:
del requires[i]
setup(name='hamper',
version=version.encode('utf8'),
description='Yet another IRC bot',
install_requires=requires,
author='Mike Cooper',
author_email='mythmon@gmail.com',
url='https://www.github.com/hamperbot/hamper',
packages=find_packages(),
scripts=['scripts/hamper'],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment