Mercurial > hg > autobot
comparison setup.py @ 305:52baa0f2995a
long description from README.txt
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 11 May 2014 10:16:35 -0700 |
parents | 7b5ffdcd25c0 |
children | ade2f3ef69a0 |
comparison
equal
deleted
inserted
replaced
304:7b5ffdcd25c0 | 305:52baa0f2995a |
---|---|
1 import os, sys | 1 import os |
2 from setuptools import setup, find_packages | 2 import sys |
3 from setuptools import setup | |
4 | |
5 short_description = "buildbot front-end incarnation" | |
6 try: | |
7 description = file('README.txt').read() | |
8 except IOError: | |
9 description = short_description | |
3 | 10 |
4 version = '0.1' | 11 version = '0.1' |
5 | 12 |
6 setup(name='autobot', | 13 setup(name='autobot', |
7 version=version, | 14 version=version, |
8 description="buildbot incarnation for team", | 15 description=short_description |
9 long_description="""\ | 16 long_description=description, |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 17 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='buildbot automation', | 18 keywords='buildbot automation', |
13 author='Jeff Hammel', | 19 author='Jeff Hammel', |
14 author_email='k0scist@gmail.com', | 20 author_email='k0scist@gmail.com', |
15 url='http://k0s.org/hg/autobot', | 21 url='http://k0s.org/hg/autobot', |
16 license='MPL', | 22 license='MPL', |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 23 packages=['autobot'], |
18 include_package_data=True, | 24 include_package_data=True, |
19 package_data={'': ['template/master/*', | 25 package_data={'': ['template/master/*', |
20 'template/slave/*', | 26 'template/slave/*', |
21 'template/*.*']}, | 27 'template/*.*']}, |
22 zip_safe=False, | 28 zip_safe=False, |