setuptools

This commit is contained in:
j 2010-12-07 01:22:29 +01:00
parent 1ac0604b9f
commit 41fb233fb6

View file

@ -1,7 +1,10 @@
#!/usr/bin/env python #!/usr/bin/env python
# vi:si:et:sw=4:sts=4:ts=4 # vi:si:et:sw=4:sts=4:ts=4
# encoding: utf-8 # encoding: utf-8
from distutils.core import setup try:
from setuptools import setup
except:
from distutils.core import setup
def get_bzr_version(): def get_bzr_version():
import os import os
@ -29,6 +32,7 @@ or instead of OxFF to keep archive and pan.do/ra instance in sync.
packages=[ packages=[
'pandora_client' 'pandora_client'
], ],
install_requires=['python-firefogg', 'ox'],
keywords = [ keywords = [
], ],
classifiers = [ classifiers = [