Mercurial > hg > CommitWatcher
comparison setup.py @ 2:4cb3971d9d9d
commitwatcher/__init__.py commitwatcher/agent.py commitwatcher/main.py setup.py commitwatcher/commit.py commitwatcher/store.py mozbasewatcher.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Sep 2013 21:35:29 -0700 |
parents | bdc039cb1f2e |
children |
comparison
equal
deleted
inserted
replaced
1:4e24f3c6610c | 2:4cb3971d9d9d |
---|---|
3 """ | 3 """ |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 version = "0.0" | 7 version = "0.0" |
8 dependencies = ['webob'] | 8 dependencies = ['feedparser', |
9 'pypatch', | |
10 'webob', | |
11 ] | |
9 | 12 |
10 # allow use of setuptools/distribute or distutils | 13 # allow use of setuptools/distribute or distutils |
11 kw = {} | 14 kw = {} |
12 try: | 15 try: |
13 from setuptools import setup | 16 from setuptools import setup |