public
Description: Scripts to gather information for including in version history comments and to make using source control a bit simpler for non-technical projects.
Homepage: http://bitbucketlabs.net/flashbake/
Clone URL: git://github.com/commandline/flashbake.git
Click here to lend your support to: flashbake and make a donation at www.pledgie.com !
commandline (author)
Fri Nov 06 14:12:31 -0800 2009
commit  f9dfe8866d479039ff5ef2e328dbd2b48dc087c8
tree    e36fb5416e61238f393d631eda13634be075724a
parent  7dd68fbeb0918b4a7ced1816cbdaab2de116bfee
flashbake / setup.py
100644 24 lines (20 sloc) 0.661 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
#
# setup.py for flashbake
from setuptools import setup, find_packages
 
 
 
setup(name='flashbake',
        version='0.26',
        author="Thomas Gideon",
        author_email="cmdln@thecommandline.net",
        url="http://thecommandline.net",
        license="GPLv3",
        packages=find_packages(exclude=['test.*']),
        install_requires='''
enum >=0.4.3
feedparser >=4.1
''',
        entry_points={
                'console_scripts': [ 'flashbake = flashbake.console:main',
                                     'flashbakeall = flashbake.console:multiple_projects' ]
                }
        )