style cleanup
[p2pool.git] / setup.py
1 from distutils.core import setup
2
3 try:
4     import py2exe
5 except ImportError:
6     print 'missing py2exe'
7
8
9 setup(name='p2pool',
10     version='1.0',
11     description='Peer-to-peer Bitcoin mining pool',
12     author='Forrest Voight',
13     author_email='forrest@forre.st',
14     url='http://p2pool.forre.st/',
15     
16     console=['run_p2pool.py'],
17 )